summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/io
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-27 21:47:17 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:00:59 +0200
commit944eb9902788d8afec9e3f0f65d3b680041e039b (patch)
tree3bbb926890561b81d9f6ae611be4677876799a36 /udkapi/com/sun/star/io
parentcdbbbdce9956e290b4a849af332df55da1be8d36 (diff)
*api: convert <type>Foo</type>
Doxygen does not know type element and will recognize strings that contain capital letter (all API types do) automatically as type. This patch removes 15k doxygen warnings. git ls-files | grep \\.idl | xargs sed -i "s,<type>\([^<]\+\)</type>,\1," Change-Id: I45c07cf0b115d5fb5353f4aa9719839615ea1150
Diffstat (limited to 'udkapi/com/sun/star/io')
-rw-r--r--udkapi/com/sun/star/io/DataInputStream.idl2
-rw-r--r--udkapi/com/sun/star/io/DataOutputStream.idl2
-rw-r--r--udkapi/com/sun/star/io/MarkableInputStream.idl2
-rw-r--r--udkapi/com/sun/star/io/MarkableOutputStream.idl2
-rw-r--r--udkapi/com/sun/star/io/ObjectInputStream.idl6
-rw-r--r--udkapi/com/sun/star/io/ObjectOutputStream.idl4
-rw-r--r--udkapi/com/sun/star/io/XActiveDataControl.idl2
-rw-r--r--udkapi/com/sun/star/io/XActiveDataSink.idl6
-rw-r--r--udkapi/com/sun/star/io/XActiveDataSource.idl4
-rw-r--r--udkapi/com/sun/star/io/XActiveDataStreamer.idl6
-rw-r--r--udkapi/com/sun/star/io/XConnectable.idl2
-rw-r--r--udkapi/com/sun/star/io/XObjectOutputStream.idl2
-rw-r--r--udkapi/com/sun/star/io/XOutputStream.idl2
-rw-r--r--udkapi/com/sun/star/io/XStream.idl8
-rw-r--r--udkapi/com/sun/star/io/XTempFile.idl4
15 files changed, 27 insertions, 27 deletions
diff --git a/udkapi/com/sun/star/io/DataInputStream.idl b/udkapi/com/sun/star/io/DataInputStream.idl
index a0ecc7937bf3..81b590d4f22a 100644
--- a/udkapi/com/sun/star/io/DataInputStream.idl
+++ b/udkapi/com/sun/star/io/DataInputStream.idl
@@ -29,7 +29,7 @@
module com { module sun { module star { module io {
-/** reads structured data from a chained <type>XInputStream</type>.
+/** reads structured data from a chained XInputStream.
<p>
An implementation of this service in general does not need
to buffer data itself.
diff --git a/udkapi/com/sun/star/io/DataOutputStream.idl b/udkapi/com/sun/star/io/DataOutputStream.idl
index d772c98be051..f217893b5d67 100644
--- a/udkapi/com/sun/star/io/DataOutputStream.idl
+++ b/udkapi/com/sun/star/io/DataOutputStream.idl
@@ -27,7 +27,7 @@
module com { module sun { module star { module io {
-/** writes structured data to a chained <type>XOutputStream</type>.
+/** writes structured data to a chained XOutputStream.
<p>
An implementation of this service in general does not need
diff --git a/udkapi/com/sun/star/io/MarkableInputStream.idl b/udkapi/com/sun/star/io/MarkableInputStream.idl
index 0733ecb44911..c54d29254077 100644
--- a/udkapi/com/sun/star/io/MarkableInputStream.idl
+++ b/udkapi/com/sun/star/io/MarkableInputStream.idl
@@ -31,7 +31,7 @@ module com { module sun { module star { module io {
/** allows to set marks in an inputstream and to later jump back to these
marks.
<p>The implementation reads the original data from the input stream,
- that has been set previously at the <type>XActiveDataSink</type>
+ that has been set previously at the XActiveDataSink
interface. In general the implementation must buffer the data. </p>
*/
published service MarkableInputStream
diff --git a/udkapi/com/sun/star/io/MarkableOutputStream.idl b/udkapi/com/sun/star/io/MarkableOutputStream.idl
index 4f3fb5f01cc7..7ba2fe3d5ef0 100644
--- a/udkapi/com/sun/star/io/MarkableOutputStream.idl
+++ b/udkapi/com/sun/star/io/MarkableOutputStream.idl
@@ -30,7 +30,7 @@ module com { module sun { module star { module io {
marks.
<p>The implementation stores the data as long as marks exists
and later writes these data into the output stream,
- that has been set previously at the <type>XActiveDataSource</type>
+ that has been set previously at the XActiveDataSource
interface. </p>
*/
published service MarkableOutputStream
diff --git a/udkapi/com/sun/star/io/ObjectInputStream.idl b/udkapi/com/sun/star/io/ObjectInputStream.idl
index df5a2b8b1540..9f73944bb50d 100644
--- a/udkapi/com/sun/star/io/ObjectInputStream.idl
+++ b/udkapi/com/sun/star/io/ObjectInputStream.idl
@@ -34,9 +34,9 @@
/** is a stream which allows reading the data of persistent objects.
<p>Implementations of this service must fulfill the specifications of the
- <type>DataInputStream</type> service. It must be chained to an
- <type>XMarkableStream</type>. Therefore, it provides the
- <type>XMarkableStream</type> interface, and delegates the calls to the
+ DataInputStream service. It must be chained to an
+ XMarkableStream. Therefore, it provides the
+ XMarkableStream interface, and delegates the calls to the
chained object. </p>
<p>The written objects are held until this instance is destroyed.
The references to the objects are read as four-byte integers.
diff --git a/udkapi/com/sun/star/io/ObjectOutputStream.idl b/udkapi/com/sun/star/io/ObjectOutputStream.idl
index d31b231fc338..46827c3afa15 100644
--- a/udkapi/com/sun/star/io/ObjectOutputStream.idl
+++ b/udkapi/com/sun/star/io/ObjectOutputStream.idl
@@ -32,8 +32,8 @@ module com { module sun { module star { module io {
/** is a stream which allows writing the data of persistent objects.
<p>Implementations of this service must fulfill the specifications of the
- <type>DataOutputStream</type> service; futhermore, the stream needs to be chained to a
- <type>XMarkableStream</type>. Therefore, it also provides the <type>XMarkableStream</type>
+ DataOutputStream service; futhermore, the stream needs to be chained to a
+ XMarkableStream. Therefore, it also provides the XMarkableStream
interface, but it delegates the calls to the chained object.
The written objects are held until this instance is destroyed.
The references to the objects are written as four-byte integers
diff --git a/udkapi/com/sun/star/io/XActiveDataControl.idl b/udkapi/com/sun/star/io/XActiveDataControl.idl
index f23975dea46f..1ffdbfb8d5f9 100644
--- a/udkapi/com/sun/star/io/XActiveDataControl.idl
+++ b/udkapi/com/sun/star/io/XActiveDataControl.idl
@@ -30,7 +30,7 @@ module com { module sun { module star { module io {
/** makes it possible to control an active data source.
<p>This interface should be supported by objects which implement
- <type>XActiveDataSource</type> or <type>XActiveDataSink</type>.</p>
+ XActiveDataSource or XActiveDataSink.</p>
*/
published interface XActiveDataControl: com::sun::star::uno::XInterface
{
diff --git a/udkapi/com/sun/star/io/XActiveDataSink.idl b/udkapi/com/sun/star/io/XActiveDataSink.idl
index 4eb55715769a..ab0366c31092 100644
--- a/udkapi/com/sun/star/io/XActiveDataSink.idl
+++ b/udkapi/com/sun/star/io/XActiveDataSink.idl
@@ -30,15 +30,15 @@ module com { module sun { module star { module io {
/** makes it possible to read the corresponding object from an input stream.
<p>If you want to allow control from outside, also implement the
- <type>XActiveDataControl</type> interface. </p>
+ XActiveDataControl interface. </p>
*/
published interface XActiveDataSink: com::sun::star::uno::XInterface
{
/** plugs the input stream.
- <p>If <type>XConnectable</type> is also implemented, this
+ <p>If XConnectable is also implemented, this
method should query <var>aStream</var> for an
- <type>XConnectable</type> and connect both.</p>
+ XConnectable and connect both.</p>
*/
void setInputStream( [in] com::sun::star::io::XInputStream aStream );
diff --git a/udkapi/com/sun/star/io/XActiveDataSource.idl b/udkapi/com/sun/star/io/XActiveDataSource.idl
index 9c4e65548409..f0ad70f8d8f3 100644
--- a/udkapi/com/sun/star/io/XActiveDataSource.idl
+++ b/udkapi/com/sun/star/io/XActiveDataSource.idl
@@ -35,9 +35,9 @@ published interface XActiveDataSource: com::sun::star::uno::XInterface
{
/** plugs the output stream.
- <p>If <type>XConnectable</type> is also implemented, this
+ <p>If XConnectable is also implemented, this
method should query <var>aStream</var> for a
- <type>XConnectable</type> and connect both.
+ XConnectable and connect both.
</p>
*/
void setOutputStream( [in] com::sun::star::io::XOutputStream aStream );
diff --git a/udkapi/com/sun/star/io/XActiveDataStreamer.idl b/udkapi/com/sun/star/io/XActiveDataStreamer.idl
index 4f04ad625873..f79d0a2ca3ef 100644
--- a/udkapi/com/sun/star/io/XActiveDataStreamer.idl
+++ b/udkapi/com/sun/star/io/XActiveDataStreamer.idl
@@ -31,15 +31,15 @@ module com { module sun { module star { module io {
<p>If you want to allow control from outside, also implement the
- <type>XActiveDataControl</type> interface. </p>
+ XActiveDataControl interface. </p>
*/
published interface XActiveDataStreamer: com::sun::star::uno::XInterface
{
/** plugs the input/output stream.
- <p>If <type>XConnectable</type> is also implemented, this
+ <p>If XConnectable is also implemented, this
method should query <var>aStream</var> for a
- <type>XConnectable</type> and connect both.</p>
+ XConnectable and connect both.</p>
*/
void setStream( [in] com::sun::star::io::XStream aStream );
diff --git a/udkapi/com/sun/star/io/XConnectable.idl b/udkapi/com/sun/star/io/XConnectable.idl
index f0e5d7e55143..ae9baa3b7430 100644
--- a/udkapi/com/sun/star/io/XConnectable.idl
+++ b/udkapi/com/sun/star/io/XConnectable.idl
@@ -31,7 +31,7 @@
nearer to the source of the data. The successor-member is the element
that is further away from the source of the data. (Note that this
classification does not depend on whether the class implements
- <type>XInputStream</type> or <type>XOutputStream</type>; it only
+ XInputStream or XOutputStream; it only
depends on the direction of data flow.) </p>
<p>This interface allows generic services to navigate between
arbitrary elements of a connection.</p>
diff --git a/udkapi/com/sun/star/io/XObjectOutputStream.idl b/udkapi/com/sun/star/io/XObjectOutputStream.idl
index a6a025aa57d5..6529f7d3988f 100644
--- a/udkapi/com/sun/star/io/XObjectOutputStream.idl
+++ b/udkapi/com/sun/star/io/XObjectOutputStream.idl
@@ -31,7 +31,7 @@ module com { module sun { module star { module io {
/** stores XPersistObject implementations into the stream
- <p>An implementation of the type <type>XPersistObject</type>
+ <p>An implementation of the type XPersistObject
uses this interface to write its internal state into a stream.
Have a look there for the explanation of the concept.
diff --git a/udkapi/com/sun/star/io/XOutputStream.idl b/udkapi/com/sun/star/io/XOutputStream.idl
index 83f4dd52dc20..7eb260b5c9b3 100644
--- a/udkapi/com/sun/star/io/XOutputStream.idl
+++ b/udkapi/com/sun/star/io/XOutputStream.idl
@@ -58,7 +58,7 @@ published interface XOutputStream: com::sun::star::uno::XInterface
/** gets called to indicate that all data has been written.
<p>If this method has not yet been called, no attached
- <type>XInputStream</type> receives an EOF signal. No further
+ XInputStream receives an EOF signal. No further
bytes may be written after this method has been called.</p>
*/
void closeOutput()
diff --git a/udkapi/com/sun/star/io/XStream.idl b/udkapi/com/sun/star/io/XStream.idl
index e4d0445f043c..8fcf5fc28e60 100644
--- a/udkapi/com/sun/star/io/XStream.idl
+++ b/udkapi/com/sun/star/io/XStream.idl
@@ -32,15 +32,15 @@ module com { module sun { module star { module io {
published interface XStream: com::sun::star::uno::XInterface
{
/** @returns
- the <type>XInputStream</type> part of the stream. Closing the returned
- <type>XInputStream</type> also closes any <type>XOutputStream</type> part.
+ the XInputStream part of the stream. Closing the returned
+ XInputStream also closes any XOutputStream part.
*/
XInputStream getInputStream();
/** @returns
- the <type>XInputStream</type> part of the stream. Closing the returned
- <type>XOutputStream</type> also closes the <type>XInputStream</type> part.
+ the XInputStream part of the stream. Closing the returned
+ XOutputStream also closes the XInputStream part.
*/
XOutputStream getOutputStream();
};
diff --git a/udkapi/com/sun/star/io/XTempFile.idl b/udkapi/com/sun/star/io/XTempFile.idl
index b274d33756a0..5d5fdaf71b57 100644
--- a/udkapi/com/sun/star/io/XTempFile.idl
+++ b/udkapi/com/sun/star/io/XTempFile.idl
@@ -31,12 +31,12 @@ module com { module sun { module star { module io {
interface XTempFile
{
// INTERFACES
- /** interface <type>XStream</type> offers read and write access to
+ /** interface XStream offers read and write access to
the same stream.
*/
interface XStream;
- /** interface <type>XSeekable</type> makes it possible to seek to a
+ /** interface XSeekable makes it possible to seek to a
certain position within a stream.
*/
interface XSeekable;