org.objectweb.fractal.julia.control.content
Interface SuperControllerNotifier

All Superinterfaces:
SuperController
All Known Implementing Classes:
BasicSuperControllerMixin, MCompositeImpl, MPrimitiveImpl

public interface SuperControllerNotifier
extends SuperController

An interface used to notify a component when it is added or removed from a component.


Method Summary
 void addedToFc(Component parent)
          Notifies this component that it has been added in the given component.
 void removedFromFc(Component parent)
          Notifies this component that it has been removed from the given component.
 
Methods inherited from interface org.objectweb.fractal.api.control.SuperController
getFcSuperComponents
 

Method Detail

addedToFc

void addedToFc(Component parent)
Notifies this component that it has been added in the given component.

Parameters:
parent - the component into which this component has been added.

removedFromFc

void removedFromFc(Component parent)
Notifies this component that it has been removed from the given component.

Parameters:
parent - the component from which this component has been removed.