Interface IUIContainerListener
public interface IUIContainerListener extends IUIBaseEventListener
{
// Methods
public void componentAdded(UIContainerEvent e);
public void componentRemoved(UIContainerEvent e);
}
This listener interface receives container events. Container events are provided for notification purposes only.
EventListener
|
+--IUIBaseEventListener
|
+--IUIContainerListener
public void componentAdded(UIContainerEvent e);
Invoked when a component has been added to the container.
Return Value:
No return value.
public void componentRemoved(UIContainerEvent e);
Invoked when a component has been removed from the container.
Return Value:
No return value.