diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-04-29 18:33:02 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-04 12:01:05 +0200 |
commit | b7ba598ced9708da45372a6c3f8e1a17c306be8f (patch) | |
tree | 8f7bef1c06944e35828dfec635abd626ca402cec /udkapi/com/sun/star/io | |
parent | ae7595a7553c61cab3cc9014bb12239e02fd8c6a (diff) |
*api: clean up multi-line and mal-formed XML tags
It is amazing what some people believe autodoc supports.
Also, com::sun::star::uno::Any does not exist in IDL, that is part of
the C++ language binding.
Change-Id: I1f1f5cf5d27663ace6ff618ecbecb41fd2dfa1fc
Diffstat (limited to 'udkapi/com/sun/star/io')
-rw-r--r-- | udkapi/com/sun/star/io/XAsyncOutputMonitor.idl | 9 | ||||
-rw-r--r-- | udkapi/com/sun/star/io/XOutputStream.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/io/XTextInputStream.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/io/XTextOutputStream.idl | 4 |
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 { |