summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/io/XMarkableStream.idl
diff options
context:
space:
mode:
authorJean-Tiare LE BIGOT <admin@jtlebi.fr>2012-08-11 13:22:07 -0400
committerDavid Tardon <dtardon@redhat.com>2012-08-12 19:29:16 +0200
commitfc2998738538a8e8abc4b8ab5b84a12aa7365dd0 (patch)
tree8026ad5e9a05948f882f790675c0813c72cd42bf /udkapi/com/sun/star/io/XMarkableStream.idl
parent602f956d3231a093c9853d88fe5d5de2465f7112 (diff)
Remove comment art from offapi and udkapi
I used this "one-liner" to detect comment lines containing only spaces and '=' or '-' $ find . -name "*.*" -exec sed -i '/^\s*\/\/\s*[-=]*\s*$/d' {} \; Change-Id: Iac589765c8c2e7c3ad9c487d57e48b4fd4439f07
Diffstat (limited to 'udkapi/com/sun/star/io/XMarkableStream.idl')
-rw-r--r--udkapi/com/sun/star/io/XMarkableStream.idl8
1 files changed, 0 insertions, 8 deletions
diff --git a/udkapi/com/sun/star/io/XMarkableStream.idl b/udkapi/com/sun/star/io/XMarkableStream.idl
index 13558ec0c107..d85cf6c9b6fd 100644
--- a/udkapi/com/sun/star/io/XMarkableStream.idl
+++ b/udkapi/com/sun/star/io/XMarkableStream.idl
@@ -26,18 +26,15 @@
#include <com/sun/star/lang/IllegalArgumentException.idl>
-//=============================================================================
module com { module sun { module star { module io {
-//=============================================================================
// DocMerge from xml: interface com::sun::star::io::XMarkableStream
/** makes it possible to set and remove seekable marks to a stream.
*/
published interface XMarkableStream: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
// DocMerge from xml: method com::sun::star::io::XMarkableStream::createMark
/** creates a mark of the current postion and returns an identifier to it.
@@ -45,7 +42,6 @@ published interface XMarkableStream: com::sun::star::uno::XInterface
long createMark()
raises( com::sun::star::io::IOException );
- //-------------------------------------------------------------------------
// DocMerge from xml: method com::sun::star::io::XMarkableStream::deleteMark
/** deletes the mark that you previously created with
@@ -60,7 +56,6 @@ published interface XMarkableStream: com::sun::star::uno::XInterface
raises( com::sun::star::io::IOException,
com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
// DocMerge from xml: method com::sun::star::io::XMarkableStream::jumpToMark
/** jumps to a previously created mark.
@@ -69,7 +64,6 @@ published interface XMarkableStream: com::sun::star::uno::XInterface
raises( com::sun::star::io::IOException,
com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/** jumps to the furthest position of the stream.
<p> In the inputstream case, a subsequent read call returns
@@ -80,7 +74,6 @@ published interface XMarkableStream: com::sun::star::uno::XInterface
void jumpToFurthest()
raises( com::sun::star::io::IOException );
- //-------------------------------------------------------------------------
// DocMerge from idl: method com::sun::star::io::XMarkableStream::offsetToMark
/** @returns
@@ -103,7 +96,6 @@ published interface XMarkableStream: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };