summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/io
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-27 21:58:51 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:01:00 +0200
commit9f12a9da8d91364d4d0865021adbe62bfa09148c (patch)
treea74d3d9213f950fff68bca5ba07662e15b82d217 /udkapi/com/sun/star/io
parent944eb9902788d8afec9e3f0f65d3b680041e039b (diff)
*api: convert <type scope="bar">Foo</type>
This looks much better now. sed -i 's,<type scope="\([^"]*\)">\([^<]\+\)</type>,\1::\2,g' Change-Id: I94cd0f93afa89855b62dadeb229d2b2e1775cd80
Diffstat (limited to 'udkapi/com/sun/star/io')
-rw-r--r--udkapi/com/sun/star/io/TextInputStream.idl4
-rw-r--r--udkapi/com/sun/star/io/TextOutputStream.idl4
-rw-r--r--udkapi/com/sun/star/io/XAsyncOutputMonitor.idl6
-rw-r--r--udkapi/com/sun/star/io/XPersistObject.idl2
-rw-r--r--udkapi/com/sun/star/io/XTextInputStream2.idl2
-rw-r--r--udkapi/com/sun/star/io/XTextOutputStream2.idl2
6 files changed, 10 insertions, 10 deletions
diff --git a/udkapi/com/sun/star/io/TextInputStream.idl b/udkapi/com/sun/star/io/TextInputStream.idl
index f2a8e56053c0..321bf3e5405d 100644
--- a/udkapi/com/sun/star/io/TextInputStream.idl
+++ b/udkapi/com/sun/star/io/TextInputStream.idl
@@ -27,12 +27,12 @@
module com { module sun { module star { module io {
/** provides functionality to read text data from a
- <type scope="com::sun::star::io">XInputStream</type>
+ com::sun::star::io::XInputStream
that initially has to be passed to the method
<member>XActiveDataSink::setInputStream()</member>.
<p>For details about the text functionality see
- <type scope="com::sun::star::io">XTextInputStream</type>.
+ com::sun::star::io::XTextInputStream.
*/
published service TextInputStream : XTextInputStream2;
diff --git a/udkapi/com/sun/star/io/TextOutputStream.idl b/udkapi/com/sun/star/io/TextOutputStream.idl
index 75ab3dd4e544..a123e1272ae4 100644
--- a/udkapi/com/sun/star/io/TextOutputStream.idl
+++ b/udkapi/com/sun/star/io/TextOutputStream.idl
@@ -26,12 +26,12 @@
module com { module sun { module star { module io {
/** provides functionality to write text data to a
- <type scope="com::sun::star::io">XOutputStream</type>
+ com::sun::star::io::XOutputStream
that initially has to be passed to the method
<member>XActiveDataSource::setOutputStream()</member>.
<p>For details about the text functionality see
- <type scope="com::sun::star::io">XTextOutputStream</type>.
+ com::sun::star::io::XTextOutputStream.
*/
published service TextOutputStream : XTextOutputStream2;
diff --git a/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl b/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl
index bfce69556209..f3f4fd7d64c6 100644
--- a/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl
+++ b/udkapi/com/sun/star/io/XAsyncOutputMonitor.idl
@@ -27,12 +27,12 @@ module com { module sun { module star { module io {
/**
An optional companion interface to
- <type scope="com::sun::star::io">XOutputStream</type> that supports scenarios
+ com::sun::star::io::XOutputStream that supports scenarios
where <member scope="com::sun::star::io">XOutputStream::writeBytes</member>
operates asynchronously and does not necessarily report any errors.
<p>A typical scenario where this interface is useful is when an
- <type scope="com::sun::star::io">XOutputStream</type> is used to write to a
+ 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
execute asynchronously then, in that any potential errors might only be
@@ -56,7 +56,7 @@ interface XAsyncOutputMonitor {
and reports potentially pending errors.
<p>Calling this method is potentially expensive (even if the associated
- <type scope="com::sun::star::io">XOutputStream</type> represents a local
+ 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>.
diff --git a/udkapi/com/sun/star/io/XPersistObject.idl b/udkapi/com/sun/star/io/XPersistObject.idl
index af02ad0b9cff..2f6c8e06dc3b 100644
--- a/udkapi/com/sun/star/io/XPersistObject.idl
+++ b/udkapi/com/sun/star/io/XPersistObject.idl
@@ -41,7 +41,7 @@ module com { module sun { module star { module io {
itself again (by using the read method). Therefor it must be
createable by name via a factory, which is in general
the global service manager. The create and read mechanism
- is implemented by the <type scope="com::sun::star::io">ObjectInputStream</type>.
+ is implemented by the com::sun::star::io::ObjectInputStream.
<p>The serialization format (the series of strings, integers, objects) must
be specified at the specification of the concrete service.
diff --git a/udkapi/com/sun/star/io/XTextInputStream2.idl b/udkapi/com/sun/star/io/XTextInputStream2.idl
index 59c5b9cc2301..7b4ab6eb428b 100644
--- a/udkapi/com/sun/star/io/XTextInputStream2.idl
+++ b/udkapi/com/sun/star/io/XTextInputStream2.idl
@@ -35,7 +35,7 @@ published interface XTextInputStream2
/// Interface to read text data
interface com::sun::star::io::XTextInputStream;
- /// Interface to specify the used <type scope="com::sun::star::io">XInputStream</type>
+ /// Interface to specify the used com::sun::star::io::XInputStream
interface com::sun::star::io::XActiveDataSink;
};
diff --git a/udkapi/com/sun/star/io/XTextOutputStream2.idl b/udkapi/com/sun/star/io/XTextOutputStream2.idl
index 12209b0a5ee3..e8abf92aafeb 100644
--- a/udkapi/com/sun/star/io/XTextOutputStream2.idl
+++ b/udkapi/com/sun/star/io/XTextOutputStream2.idl
@@ -35,7 +35,7 @@ published interface XTextOutputStream2
/// Interface to write text data
interface com::sun::star::io::XTextOutputStream;
- /// Interface to specify the used <type scope="com::sun::star::io">XOutputStream</type>
+ /// Interface to specify the used com::sun::star::io::XOutputStream
interface com::sun::star::io::XActiveDataSource;
};