summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/embed/XTransactionListener.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/embed/XTransactionListener.idl')
-rw-r--r--offapi/com/sun/star/embed/XTransactionListener.idl7
1 files changed, 0 insertions, 7 deletions
diff --git a/offapi/com/sun/star/embed/XTransactionListener.idl b/offapi/com/sun/star/embed/XTransactionListener.idl
index cef23fe507af..1a6fde0a565d 100644
--- a/offapi/com/sun/star/embed/XTransactionListener.idl
+++ b/offapi/com/sun/star/embed/XTransactionListener.idl
@@ -25,41 +25,34 @@
#include <com/sun/star/uno/Exception.idl>
-//============================================================================
module com { module sun { module star { module embed {
-//============================================================================
/** makes it possible to receive events when a transacted object is commited
or reverted.
*/
published interface XTransactionListener: com::sun::star::lang::XEventListener
{
- //------------------------------------------------------------------------
/** is called just before the object is commited.
*/
void preCommit( [in] com::sun::star::lang::EventObject aEvent )
raises( ::com::sun::star::uno::Exception );
- //------------------------------------------------------------------------
/** is called after the object is commited.
*/
void commited( [in] com::sun::star::lang::EventObject aEvent );
- //------------------------------------------------------------------------
/** is called just before the object is reverted.
*/
void preRevert( [in] com::sun::star::lang::EventObject aEvent )
raises( ::com::sun::star::uno::Exception );
- //------------------------------------------------------------------------
/** is called after the object is reverted.
*/
void reverted( [in] com::sun::star::lang::EventObject aEvent );
};
-//============================================================================
}; }; }; };