:: com :: sun :: star :: util ::

interface XModifyBroadcaster
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XModifyBroadcaster
Description
broadcasts each modification made on the date data of the object which supports this interface.

The modified object must post the modification events immediately after the modification is performed.


Methods' Summary
addModifyListener adds the specified listener to receive events "modified."
removeModifyListener removes the specified listener.
Methods' Details
addModifyListener
[oneway] void
addModifyListener(
 
[in] XModifyListener
 
aListener );

Description
adds the specified listener to receive events "modified."
removeModifyListener
[oneway] void
removeModifyListener(
 
[in] XModifyListener
 
aListener );

Description
removes the specified listener.
Top of Page