13 lines
367 B
Markdown
Raw Normal View History

2014-08-09 19:52:29 +03:00
2014-08-09 20:44:21 +03:00
Design pattern samples in Java.
Abstract Factory
================
Intent: Provide an interface for creating families of related or dependent objects without specifying their concrete classes.
2014-08-09 22:39:53 +03:00
Builder
=======
Intent: Separate the construction of a complex object from its representation so that the same construction process can create different representations.