| Author |
Composite design pattern
|
meeta gaur
Ranch Hand
Joined: Dec 05, 2012
Posts: 226
|
|
Hi,
i created this program from my understanding, do you think this is correct example of composite design pattern ?
|
OCAJP
|
 |
Matthew Brown
Bartender
Joined: Apr 06, 2010
Posts: 3860
|
|
|
No, because all that allows you to go is have a Composite containing a single Leaf. The idea behind the composite pattern is to allow you to build a hierarchy of grouped objects. So what you need is to implement it so that each Composite object can contain multiple Component objects (not just Leafs). That way you can put Composites inside Composites.
|
 |
 |
|
|
subject: Composite design pattern
|
|
|