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

interface XUpdateBroadcaster
Description
is the broadcaster interface for sending "approveUpdate" and "updated" events.

The component supporting this interface must do approval calls (XUpdateListener::approveUpdate) immediately before the data is updated, and notification calls (XUpdateListener::updated) immediately afterwards.

See also
XUpdateListener

Methods' Summary
addUpdateListener adds the specified listener to receive the events "approveUpdate" and "updated".  
removeUpdateListener removes the specified listener.  
Methods' Details
addUpdateListener
[oneway] void
addUpdateListener( [in] XUpdateListener  aListener );

Description
adds the specified listener to receive the events "approveUpdate" and "updated".
Parameter aListener
the listener to add.
See also
XUpdateListener
removeUpdateListener
[oneway] void
removeUpdateListener( [in] XUpdateListener  aListener );

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