Composite Pattern
Every component or object can be classified into one of the two categories —
Individual Components or Composite Components. Composite components are composed of
individual components or other composite components. Imagine a tree or file system.
The Composite pattern is useful in designing a common interface for both individual and composite components so that client programs can view both the individual components
and groups of components uniformly.

The "component" can be interface or abstract.
page_revision: 8, last_edited: 1211203191|%e %b %Y, %H:%M %Z (%O ago)





