summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/embed/XTransactedObject.idl
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
commit1791187c45cd976f4c1242960a770a6d9de2bf76 (patch)
tree4791eeab52febaae972eda71bb081e76b3b7a88f /offapi/com/sun/star/embed/XTransactedObject.idl
parent3df5115a827eea9f9b05dda50161a5318354974b (diff)
INTEGRATION: CWS fwkbugfix02 (1.2.148); FILE MERGED
2004/03/22 10:14:36 mav 1.2.148.1: #115011# review idl files
Diffstat (limited to 'offapi/com/sun/star/embed/XTransactedObject.idl')
-rw-r--r--offapi/com/sun/star/embed/XTransactedObject.idl19
1 files changed, 10 insertions, 9 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 );
-
};
-//=============================================================================
+//============================================================================
}; }; }; };