Update README.md

This commit is contained in:
Ilkka Seppälä 2015-03-16 11:47:28 +02:00
parent 1e7b40ce77
commit 692400d197

View File

@ -9,40 +9,41 @@
### Creational Patterns ### Creational Patterns
* [Abstract Factory](#abstract-factory) * [Abstract Factory](#abstract-factory)
* [Builder](#builder) * [Builder](#builder)
* [Factory Method](#factory-method) * [Factory Method](#factory-method)
* [Prototype](#prototype) * [Prototype](#prototype)
* [Singleton](#singleton) * [Singleton](#singleton)
### Structural Patterns ### Structural Patterns
* [Adapter](#adapter) * [Adapter](#adapter)
* [Bridge](#bridge) * [Bridge](#bridge)
* [Composite](#composite) * [Composite](#composite)
* [Decorator](#decorator) * [Decorator](#decorator)
* [Facade](#facade) * [Facade](#facade)
* [Flyweight](#flyweight) * [Flyweight](#flyweight)
* [Proxy](#proxy) * [Proxy](#proxy)
* [Service Locator](#service-locator) * [Service Locator](#service-locator)
* [Model-View-Presenter](#model-view-presenter) * [Model-View-Presenter](#model-view-presenter)
* [Servant](#servant) * [Servant](#servant)
* [Event Aggregator](#event-aggregator) * [Event Aggregator](#event-aggregator)
### Behavioral Patterns ### Behavioral Patterns
* [Chain of responsibility](#chain-of-responsibility)
* [Command](#command) * [Chain of responsibility](#chain-of-responsibility)
* [Interpreter](#interpreter) * [Command](#command)
* [Iterator](#iterator) * [Interpreter](#interpreter)
* [Mediator](#mediator) * [Iterator](#iterator)
* [Memento](#memento) * [Mediator](#mediator)
* [Observer](#observer) * [Memento](#memento)
* [State](#state) * [Observer](#observer)
* [Strategy](#strategy) * [State](#state)
* [Template method](#template-method) * [Strategy](#strategy)
* [Visitor](#visitor) * [Template method](#template-method)
* [Double Checked Locking](#double-checked-locking) * [Visitor](#visitor)
* [Null Object](#null-object) * [Double Checked Locking](#double-checked-locking)
* [Null Object](#null-object)
## <a name="abstract-factory">Abstract Factory</a> [&#8593;](#list-of-design-patterns) ## <a name="abstract-factory">Abstract Factory</a> [&#8593;](#list-of-design-patterns)
**Intent:** Provide an interface for creating families of related or dependent objects without specifying their concrete classes. **Intent:** Provide an interface for creating families of related or dependent objects without specifying their concrete classes.