:: com :: sun :: star :: container ::

interface XContainer

Methods' Summary
addContainerListener adds the specified listener to receive events when elements are inserted or removed.  
removeContainerListener removes the specified listener so it does not receive any events from this container.  
Methods' Details
addContainerListener
void
addContainerListener( [in] XContainerListener  xListener );

Description
adds the specified listener to receive events when elements are inserted or removed.

It is suggested to allow multiple registration of the same listener, thus for each time a listener is added, it has to be removed.

See also
XContainerListener
removeContainerListener
void
removeContainerListener( [in] XContainerListener  xListener );

Description
removes the specified listener so it does not receive any events from this container.

It is suggested to allow multiple registration of the same listener, thus for each time a listener is added, it has to be removed.

See also
XContainerListener
Top of Page