:: com :: sun :: star :: embed ::

interface XTransactionListener
Base Interfaces
XTransactionListener
┗ ::com::sun::star::lang::XEventListener

::com::sun::star::lang::XEventListener
(referenced interface's summary:)
base interface for all event listeners interfaces.
Description
makes it possible to receive events when a transacted object is committed or reverted.

Methods' Summary
preCommit is called just before the object is committed.  
commited is called after the object is committed.  
preRevert is called just before the object is reverted.  
reverted is called after the object is reverted.  
Methods' Details
preCommit
void
preCommit( [in] ::com::sun::star::lang::EventObject  aEvent )
raises( ::com::sun::star::uno::Exception );

Description
is called just before the object is committed.
commited
void
commited( [in] ::com::sun::star::lang::EventObject  aEvent );

Description
is called after the object is committed.
preRevert
void
preRevert( [in] ::com::sun::star::lang::EventObject  aEvent )
raises( ::com::sun::star::uno::Exception );

Description
is called just before the object is reverted.
reverted
void
reverted( [in] ::com::sun::star::lang::EventObject  aEvent );

Description
is called after the object is reverted.
Top of Page