Added descriptions for patterns categories.

This commit is contained in:
Ilkka Seppälä 2015-03-16 11:55:42 +02:00
parent 692400d197
commit ad51931061

View File

@ -9,6 +9,8 @@
### Creational Patterns
Creational design patterns abstract the instantiation process. They help make a system independent of how its objects are created, composed, and represented.
* [Abstract Factory](#abstract-factory)
* [Builder](#builder)
* [Factory Method](#factory-method)
@ -17,6 +19,8 @@
### Structural Patterns
Structural patterns are concerned with how classes and objects are composed to form larger structures.
* [Adapter](#adapter)
* [Bridge](#bridge)
* [Composite](#composite)
@ -31,6 +35,8 @@
### Behavioral Patterns
Behavioral patterns are concerned with algorithms and the assignment of responsibilites between objects.
* [Chain of responsibility](#chain-of-responsibility)
* [Command](#command)
* [Interpreter](#interpreter)