:: com :: sun :: star :: form ::

interface XChangeBroadcaster
Description
provides functionality to notify listeners of data changes.

The concrete semantics of a change (i.e. the conditions for when a change event is fired) must be specified in the service description of the providing service.


Methods' Summary
addChangeListener adds the specified listener to receive the "changed" event.  
removeChangeListener removes the specified listener.  
Methods' Details
addChangeListener
[oneway] void
addChangeListener( [in] XChangeListener  aListener );

Description
adds the specified listener to receive the "changed" event.
Parameter aListener
the listener to add.
removeChangeListener
[oneway] void
removeChangeListener( [in] XChangeListener  aListener );

Description
removes the specified listener.
Parameter aListener
the listener to remove.
Top of Page