README AbstractFactory

This commit is contained in:
Dominik Liebler 2013-09-24 14:18:33 +02:00
parent f1e8c5796f
commit f8e801d445
2 changed files with 12 additions and 11 deletions

View File

@ -3,12 +3,7 @@
namespace DesignPatterns\AbstractFactory;
/**
* Abstract Factory pattern
*
* Purpose:
* to create series of related or dependant objects without specifying their concrete classes,
* usually the created classes all implement the same interface. The client of the abstract
* factory does not care about how these objects are created, he just knows they go together.
* class AbstractFactory
*
* Sometimes also known as "Kit" in a GUI libraries.
*

View File

@ -0,0 +1,6 @@
# Abstract Factory
## Purpose
To create series of related or dependant objects without specifying their concrete classes.
Usually the created classes all implement the same interface. The client of the abstract factory does not care about how these objects are created, he just knows how they go together.