summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/io
diff options
context:
space:
mode:
Diffstat (limited to 'udkapi/com/sun/star/io')
-rw-r--r--udkapi/com/sun/star/io/XAsyncOutputMonitor.idl9
-rw-r--r--udkapi/com/sun/star/io/XOutputStream.idl4
-rw-r--r--udkapi/com/sun/star/io/XTextInputStream.idl4
-rw-r--r--udkapi/com/sun/star/io/XTextOutputStream.idl4
4 files changed, 10 insertions, 11 deletions
diff --git a/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl b/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl
index e8363eb1e7c3..f30bc4979c29 100644
--- a/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl
+++ b/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl
@@ -42,8 +42,8 @@ module com { module sun { module star { module io {
such an output stream shall not be closed immediately after one or more calls
to com::sun::star::io::XOutputStream::writeBytes(), but
the client wants to know as soon as possible whether writing was successful,
- then <member
- scope="com::sun::star::io">XAsyncOutputMonitor::waitForCompletion</member>
+ then
+ com::sun::star::io::XAsyncOutputMonitor::waitForCompletion()
should be called after the series of calls to
com::sun::star::io::XOutputStream::writeBytes().</p>
@@ -70,9 +70,8 @@ interface XAsyncOutputMonitor {
give this guarantee).</p>
@throws com::sun::star::io::IOException
- if any previous call to <member
- scope="com::sun::star::io">XOutputStream::writeBytes</member> encountered
- such an error, but has not yet reported it (in cases where
+ if any previous call to com::sun::star::io::XOutputStream::writeBytes()
+ encountered such an error, but has not yet reported it (in cases where
<code>writeBytes</code> operates asynchronously).
*/
void waitForCompletion() raises (IOException);
diff --git a/udkapi/com/sun/star/io/XOutputStream.idl b/udkapi/com/sun/star/io/XOutputStream.idl
index 7eb260b5c9b3..a8b9defc4661 100644
--- a/udkapi/com/sun/star/io/XOutputStream.idl
+++ b/udkapi/com/sun/star/io/XOutputStream.idl
@@ -46,8 +46,8 @@ published interface XOutputStream: com::sun::star::uno::XInterface
/** flushes out of the stream any data that may exist in buffers.
<p>The semantics of this method are rather vague. See
- <member scope="com::sun::star::io">
- XAsyncOutputMonitor::waitForCompletion</member> for a similar method
+ com::sun::star::io::XAsyncOutputMonitor::waitForCompletion()
+ for a similar method
with very specific semantics, that is useful in certain scenarios.</p>
*/
void flush()
diff --git a/udkapi/com/sun/star/io/XTextInputStream.idl b/udkapi/com/sun/star/io/XTextInputStream.idl
index 2a8eee42e8bf..e0a821496a06 100644
--- a/udkapi/com/sun/star/io/XTextInputStream.idl
+++ b/udkapi/com/sun/star/io/XTextInputStream.idl
@@ -72,8 +72,8 @@ published interface XTextInputStream: com::sun::star::io::XInputStream
of the stream is reached.</p>
<p><strong>Important:</strong>
This cannot be detected by asking for an empty string
- because that can be a valid return value of <member>
- readLine()</member> (if the line is empty) and
+ because that can be a valid return value of readLine()
+ (if the line is empty) and
readString() (if a delimiter is directly followed
by the next one).</p>
diff --git a/udkapi/com/sun/star/io/XTextOutputStream.idl b/udkapi/com/sun/star/io/XTextOutputStream.idl
index 102c8d18de97..26eb0e2b4e1c 100644
--- a/udkapi/com/sun/star/io/XTextOutputStream.idl
+++ b/udkapi/com/sun/star/io/XTextOutputStream.idl
@@ -31,8 +31,8 @@ module com { module sun { module star { module io {
character encoding.
<p>This interfaces allows to write strings to a stream.
- The character encoding to be used can be set by <member>
- setEncoding()</member>. Default encoding is "utf8".</p>
+ The character encoding to be used can be set by
+ setEncoding(). Default encoding is "utf8".</p>
*/
published interface XTextOutputStream: com::sun::star::io::XOutputStream
{