summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-05-10 17:08:03 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-05-10 17:08:03 +0000
commit95bb2a9c7749214bdadbb8f422d6b7d674aed922 (patch)
tree55a92b33728b1a4c19e595e8f22859690aa9d2e7
parenta499e4345a80c90f44db66d4c80e0cc965a5ca40 (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.idl19
-rw-r--r--offapi/com/sun/star/embed/XTransactionBroadcaster.idl23
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 4fe95a9d7..5f979375f 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 3c85413e8..ea53da80a 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 );
};
-//=============================================================================
+//============================================================================
}; }; }; };