summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/io
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-27 22:45:02 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:01:01 +0200
commitea71a05840f53158f669182c6e93de9f8348bbe5 (patch)
tree4b2ee9dbaf603e319f995cbf4ee6223a82ad8e71 /udkapi/com/sun/star/io
parent3122600a5e11309b86e33061defd710cf0872975 (diff)
*api: convert <member scope="foo">bar</member>
sed -i 's,<member scope="\([^"]*\)">\([^<]*::[a-z][^<:]\+[^)]\)</member>,\1::\2(),g' Change-Id: I265ff28fee73a271f205294e59955b3a1c81d95a
Diffstat (limited to 'udkapi/com/sun/star/io')
-rw-r--r--udkapi/com/sun/star/io/XAsyncOutputMonitor.idl18
1 files changed, 9 insertions, 9 deletions
diff --git a/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl b/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl
index f3f4fd7d64c6..e8363eb1e7c3 100644
--- a/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl
+++ b/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl
@@ -28,42 +28,42 @@ module com { module sun { module star { module io {
/**
An optional companion interface to
com::sun::star::io::XOutputStream that supports scenarios
- where <member scope="com::sun::star::io">XOutputStream::writeBytes</member>
+ where com::sun::star::io::XOutputStream::writeBytes()
operates asynchronously and does not necessarily report any errors.
<p>A typical scenario where this interface is useful is when an
com::sun::star::io::XOutputStream is used to write to a
file via NFS. Normally, any calls to
- <member scope="com::sun::star::io">XOutputStream::writeBytes</member> will
+ com::sun::star::io::XOutputStream::writeBytes() will
execute asynchronously then, in that any potential errors might only be
reported by later calls to
- <member scope="com::sun::star::io">XOutputStream::writeBytes</member> or
- <member scope="com::sun::star::io">XOutputStream::closeOutput</member>. If
+ com::sun::star::io::XOutputStream::writeBytes() or
+ com::sun::star::io::XOutputStream::closeOutput(). If
such an output stream shall not be closed immediately after one or more calls
- to <member scope="com::sun::star::io">XOutputStream::writeBytes</member>, but
+ 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>
should be called after the series of calls to
- <member scope="com::sun::star::io">XOutputStream::writeBytes</member>.</p>
+ com::sun::star::io::XOutputStream::writeBytes().</p>
@since OOo 2.0
*/
interface XAsyncOutputMonitor {
/**
waits for the completion of any previous calls to
- <member scope="com::sun::star::io">XOutputStream::writeBytes</member>,
+ com::sun::star::io::XOutputStream::writeBytes(),
and reports potentially pending errors.
<p>Calling this method is potentially expensive (even if the associated
com::sun::star::io::XOutputStream represents a local
file not accessed via NFS, for example). This method has a similar
description to
- <member scope="com::sun::star::io">XOutputStream::flush</member>.
+ com::sun::star::io::XOutputStream::flush().
However, where the semantics of <code>flush</code> are rather vague,
<code>waitForCompletion</code> has very specific semantics&mdash;it just
blocks long enough so that any errors encountered during previous calls
- to <member scope="com::sun::star::io">XOutputStream::writeBytes</member>
+ to com::sun::star::io::XOutputStream::writeBytes()
can reliably be reported. It specificially does not guarantee that any
data have savely been stored on a stable physical medium, like a hard
disk (and it is completely unspecified whether <code>flush</code> should