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

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

::com::sun::star::lang::XEventListener
(referenced interface's summary:)

Methods' Summary
preCommit is called just before the object is commited.  
commited is called after the object is commited.  
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 commited.
commited
void
commited( [in] ::com::sun::star::lang::EventObject  aEvent );

Description
is called after the object is commited.
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