diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-05-10 17:08:03 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-05-10 17:08:03 +0000 |
commit | 1791187c45cd976f4c1242960a770a6d9de2bf76 (patch) | |
tree | 4791eeab52febaae972eda71bb081e76b3b7a88f | |
parent | 3df5115a827eea9f9b05dda50161a5318354974b (diff) |
INTEGRATION: CWS fwkbugfix02 (1.2.148); FILE MERGED
2004/03/22 10:14:36 mav 1.2.148.1: #115011# review idl files
-rw-r--r-- | offapi/com/sun/star/embed/XTransactedObject.idl | 19 | ||||
-rw-r--r-- | offapi/com/sun/star/embed/XTransactionBroadcaster.idl | 23 |
2 files changed, 23 insertions, 19 deletions
diff --git a/offapi/com/sun/star/embed/XTransactedObject.idl b/offapi/com/sun/star/embed/XTransactedObject.idl index 3c63a4e15f20..cb91d98bce6a 100644 --- a/offapi/com/sun/star/embed/XTransactedObject.idl +++ b/offapi/com/sun/star/embed/XTransactedObject.idl @@ -2,9 +2,9 @@ * * $RCSfile: XTransactedObject.idl,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: kz $ $Date: 2003-09-11 10:27:25 $ + * last change: $Author: hr $ $Date: 2004-05-10 18:07:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -73,30 +73,31 @@ #include <com/sun/star/lang/WrappedTargetException.idl> #endif -//============================================================================= +//============================================================================ module com { module sun { module star { module embed { -//============================================================================= -/** +//============================================================================ +/** allows transacted access to an object. */ interface XTransactedObject: com::sun::star::uno::XInterface { - /** Commit the changes made for object. + // ----------------------------------------------------------------------- + /** commits the changes made for object. */ void commit() raises( ::com::sun::star::io::IOException, ::com::sun::star::lang::WrappedTargetException ); - /** Remove all the changes made for the object after last commit or loading. + /** removes all the changes made for the object after last commit or + loading. */ void revert() raises( ::com::sun::star::io::IOException, ::com::sun::star::lang::WrappedTargetException ); - }; -//============================================================================= +//============================================================================ }; }; }; }; diff --git a/offapi/com/sun/star/embed/XTransactionBroadcaster.idl b/offapi/com/sun/star/embed/XTransactionBroadcaster.idl index f0571678c1b6..6a6a20675343 100644 --- a/offapi/com/sun/star/embed/XTransactionBroadcaster.idl +++ b/offapi/com/sun/star/embed/XTransactionBroadcaster.idl @@ -2,9 +2,9 @@ * * $RCSfile: XTransactionBroadcaster.idl,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: kz $ $Date: 2003-09-11 10:27:37 $ + * last change: $Author: hr $ $Date: 2004-05-10 18:08:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -70,28 +70,31 @@ #endif -//============================================================================= +//============================================================================ module com { module sun { module star { module embed { -//============================================================================= +//============================================================================ /** broadcasts messege in case transacted object is commited or reverted. */ interface XTransactionBroadcaster: com::sun::star::uno::XInterface { - //------------------------------------------------------------------------- - /** adds the specified listener to receive events about commits and reverts + //------------------------------------------------------------------------ + /** adds the specified listener to receive events about commits and + reverts. */ - void addTransactionListener( [in] com::sun::star::embed::XTransactionListener aListener ); + void addTransactionListener( + [in] com::sun::star::embed::XTransactionListener aListener ); - //------------------------------------------------------------------------- + //------------------------------------------------------------------------ /** removes the specified listener. */ - void removeTransactionListener( [in] com::sun::star::embed::XTransactionListener aListener ); + void removeTransactionListener( + [in] com::sun::star::embed::XTransactionListener aListener ); }; -//============================================================================= +//============================================================================ }; }; }; }; |