Business Components

oracle.jbo.server
Interface ContainerObjectListener


public interface ContainerObjectListener
extends java.util.EventListener

Implemented by subscribers to container object events.

Container object events add or remove components from a container.

Since:
JDevloper 3.0
See Also:
ContainerObjectEvent

Method Summary
 void componentAdded(ContainerObjectEvent e)
          Called by an event publisher to report that a component has been added to a container.
 void componentRemoved(ContainerObjectEvent e)
          Called by an event publisher to report that a component has been removed from a container.
 

Method Detail

componentAdded

public void componentAdded(ContainerObjectEvent e)
Called by an event publisher to report that a component has been added to a container.
Parameters:
e - an event identifying the container and component.

componentRemoved

public void componentRemoved(ContainerObjectEvent e)
Called by an event publisher to report that a component has been removed from a container.
Parameters:
e - an event identifying the container and component.

Business Components