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

interface XApproveActionBroadcaster
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XApproveActionBroadcaster
Description
allows to probably veto actions to be performed on components.

Usually, a component which supports the XApproveActionBroadcaster interface implements ::com::sun::star::awt::XActionListener as well.


Methods' Summary
addApproveActionListener adds the specified listener to receive the XApproveActionListener::approveAction event.
removeApproveActionListener removes the specified listener
Methods' Details
addApproveActionListener
[oneway] void
addApproveActionListener(
 
[in] XApproveActionListener
 
aListener );

Description
adds the specified listener to receive the XApproveActionListener::approveAction event.
Parameter aListener
the listener to be added
removeApproveActionListener
[oneway] void
removeApproveActionListener(
 
[in] XApproveActionListener
 
aListener );

Description
removes the specified listener
Parameter aListener
the listener to be removed
Top of Page