add README files

This commit is contained in:
Antonio Spinelli
2014-04-16 14:51:11 -03:00
parent 113f63a54f
commit 06fc97713a
5 changed files with 74 additions and 34 deletions

11
Creational/README.md Normal file
View File

@@ -0,0 +1,11 @@
# Creational
* [AbstractFactory](AbstractFactory) [:notebook:](http://en.wikipedia.org/wiki/Abstract_factory_pattern)
* [Builder](Builder) [:notebook:](http://en.wikipedia.org/wiki/Builder_pattern)
* [FactoryMethod](FactoryMethod) [:notebook:](http://en.wikipedia.org/wiki/Factory_method_pattern)
* [Multiton](Multiton) (is considered an anti-pattern! :no_entry:)
* [Pool](Pool) [:notebook:](http://en.wikipedia.org/wiki/Object_pool_pattern)
* [Prototype](Prototype) [:notebook:](http://en.wikipedia.org/wiki/Prototype_pattern)
* [SimpleFactory](SimpleFactory)
* [Singleton](Singleton) [:notebook:](http://en.wikipedia.org/wiki/Singleton_pattern) (is considered an anti-pattern! :no_entry:)
* [StaticFactory](StaticFactory)