public interface IPlantCompositeListener
PlantComposite
s.
The PlantComposite should use these notifications when components are added
or removed so that the listener does not need to look for the components that
have been removed or added.Modifier and Type | Method and Description |
---|---|
void |
addedComponents(PlantComposite composite,
java.util.List<PlantComponent> added)
PlantComponents have been added to the PlantComposite.
|
void |
removedComponents(PlantComposite composite,
java.util.List<PlantComponent> removed)
PlantComponents have been removed the PlantComposite.
|
void addedComponents(PlantComposite composite, java.util.List<PlantComponent> added)
composite
- The PlantComposite that has gained PlantComponents.added
- A list of the added PlantComponents.void removedComponents(PlantComposite composite, java.util.List<PlantComponent> removed)
composite
- The PlantComposite that has removed PlantComponents.removed
- A list of the removed PlantComponents.