Monday, August 07, 2006

Design Pattern : Abstract Factory Pattern

Abstract Factory : Provides an interface for creating families of related or dependent objectes without specifying their concrete classes

Sunday, August 06, 2006

Design Pattern : Factory Pattern


Factory Pattern:Define an interface for creating an object, but let subclasses decide which class to instantiate. Factory method lets a class defer instantiation to subclasses.