Composite pattern

Introduction

Compose objects into tree structures to represent part-whole hierarchies. Composite lets clients treat individual objects and compositions of objects uniformly.

Participants:

Component

Leaf

If the "Add Composite operations to Component" option is checked, then the methods for adding/removing leafs will be defined in the Component interface. This gives you transparency, because you can treat all components uniformly.It costs you safety, because clients may try to do meaningless things like add and remove objects from leaves.

Composite

In the "Attribute vector" field you can specify the name of a Composite's Vector attribute to keep references to Component objects the Composite contains.

In the "getEnumeration method" you can specify the name of a Composite's method returning an enumeration of Component objects the Composite contains.

The "Copy documentation" option controls whether to copy JavaDoc comments from methods in interfaces participating in the pattern to the stubs of these methods made by the pattern in classes implementing such interfaces.

The "Create pattern links" option controls whether to generate additional links which can be used by this pattern later to determine classes and interfaces participating in the pattern. That means that if you selected this option and used the pattern to create a set of classes and interfaces, the pattern invoked for some participant later (via the popup menu item "Choose Pattern...") will automatically find (if it is possible) all other participants and fill in participant fields with their names.

Also, if you applied the pattern with this option on and invoked the pattern via the popup menu item "Choose Pattern..." for some participant later, the pattern will have additional field called "Use selected class as", containing possible roles for the selected element.

This option is very useful when you are planning to change something in the classes/interfaces participating in the pattern. For example, if this option is on and after creation of the classes and interfaces you added several methods to certain interface-participant (and this change must be reflected somehow in other participants), all you have to do is to select this changed interface, invoke the "Choose Pattern..." dialog for this element and select the original pattern. After that the pattern will determine other participants and you will only have to press "Finish". The pattern will modify all other classes and interfaces accordingly to your changes.

Applicability

Use the Composite when