Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.net4j.util.doc/javadoc/org/eclipse/net4j/util/io/DelegatingOutputStream.html')
-rw-r--r--plugins/org.eclipse.net4j.util.doc/javadoc/org/eclipse/net4j/util/io/DelegatingOutputStream.html44
1 files changed, 22 insertions, 22 deletions
diff --git a/plugins/org.eclipse.net4j.util.doc/javadoc/org/eclipse/net4j/util/io/DelegatingOutputStream.html b/plugins/org.eclipse.net4j.util.doc/javadoc/org/eclipse/net4j/util/io/DelegatingOutputStream.html
index cd84707a67..326ae9d36f 100644
--- a/plugins/org.eclipse.net4j.util.doc/javadoc/org/eclipse/net4j/util/io/DelegatingOutputStream.html
+++ b/plugins/org.eclipse.net4j.util.doc/javadoc/org/eclipse/net4j/util/io/DelegatingOutputStream.html
@@ -108,16 +108,16 @@ Class DelegatingOutputStream</H2>
</PRE>
<P>
-This class is the superclass of all classes that filter output streams. These streams sit on top of an already
- existing output stream (the <i>underlying</i> output stream) which it uses as its basic sink of data, but possibly
- transforming the data along the way or providing additional functionality.
- <p>
- The class <code>DelegatingOutputStream</code> itself simply overrides all methods of <code>OutputStream</code> with
- versions that pass all requests to the underlying output stream. Subclasses of <code>DelegatingOutputStream</code>
- may further override some of these methods as well as provide additional methods and fields.
- <p>
- <b>Note:</b> The only difference to <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/io/FilterOutputStream.html?is-external=true" title="class or interface in java.io"><CODE>FilterOutputStream</CODE></A> is that <code>DelegatingOutputStream</code>
- does <b>not</b> override <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/io/OutputStream.html?is-external=true#write(byte[])" title="class or interface in java.io"><CODE>OutputStream.write(byte[])</CODE></A> or <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/io/OutputStream.html?is-external=true#write(byte[], int, int)" title="class or interface in java.io"><CODE>OutputStream.write(byte[], int, int)</CODE></A> but rather exposes the original
+This class is the superclass of all classes that filter output streams. These streams sit on top of an already
+ existing output stream (the <i>underlying</i> output stream) which it uses as its basic sink of data, but possibly
+ transforming the data along the way or providing additional functionality.
+ <p>
+ The class <code>DelegatingOutputStream</code> itself simply overrides all methods of <code>OutputStream</code> with
+ versions that pass all requests to the underlying output stream. Subclasses of <code>DelegatingOutputStream</code>
+ may further override some of these methods as well as provide additional methods and fields.
+ <p>
+ <b>Note:</b> The only difference to <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/io/FilterOutputStream.html?is-external=true" title="class or interface in java.io"><CODE>FilterOutputStream</CODE></A> is that <code>DelegatingOutputStream</code>
+ does <b>not</b> override <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/io/OutputStream.html?is-external=true#write(byte[])" title="class or interface in java.io"><CODE>OutputStream.write(byte[])</CODE></A> or <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/io/OutputStream.html?is-external=true#write(byte[], int, int)" title="class or interface in java.io"><CODE>OutputStream.write(byte[], int, int)</CODE></A> but rather exposes the original
implementations of <code>InputStream</code> which call <A HREF="../../../../../org/eclipse/net4j/util/io/DelegatingOutputStream.html#write(int)"><CODE>write(int)</CODE></A> instead of their delegate counterparts.
<P>
@@ -264,7 +264,7 @@ public <B>DelegatingOutputStream</B>(<A HREF="http://download.oracle.com/javase/
<DD>Creates an output stream filter built on top of the specified underlying output stream.
<P>
<DL>
-<DT><B>Parameters:</B><DD><CODE>out</CODE> - the underlying output stream to be assigned to the field <tt>this.out</tt> for later use, or
+<DT><B>Parameters:</B><DD><CODE>out</CODE> - the underlying output stream to be assigned to the field <tt>this.out</tt> for later use, or
<code>null</code> if this instance is to be created without an underlying stream.</DL>
</DL>
@@ -295,11 +295,11 @@ write</H3>
public void <B>write</B>(int&nbsp;b)
throws <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</A></PRE>
<DL>
-<DD>Writes the specified <code>byte</code> to this output stream.
- <p>
- The <code>write</code> method of <code>DelegatingOutputStream</code> calls the <code>write</code> method of its
- underlying output stream, that is, it performs <tt>out.write(b)</tt>.
- <p>
+<DD>Writes the specified <code>byte</code> to this output stream.
+ <p>
+ The <code>write</code> method of <code>DelegatingOutputStream</code> calls the <code>write</code> method of its
+ underlying output stream, that is, it performs <tt>out.write(b)</tt>.
+ <p>
Implements the abstract <tt>write</tt> method of <tt>OutputStream</tt>.
<P>
<DD><DL>
@@ -319,9 +319,9 @@ flush</H3>
public void <B>flush</B>()
throws <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</A></PRE>
<DL>
-<DD>Flushes this output stream and forces any buffered output bytes to be written out to the stream.
- <p>
- The <code>flush</code> method of <code>DelegatingOutputStream</code> calls the <code>flush</code> method of its
+<DD>Flushes this output stream and forces any buffered output bytes to be written out to the stream.
+ <p>
+ The <code>flush</code> method of <code>DelegatingOutputStream</code> calls the <code>flush</code> method of its
underlying output stream.
<P>
<DD><DL>
@@ -341,9 +341,9 @@ close</H3>
public void <B>close</B>()
throws <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</A></PRE>
<DL>
-<DD>Closes this output stream and releases any system resources associated with the stream.
- <p>
- The <code>close</code> method of <code>DelegatingOutputStream</code> calls its <code>flush</code> method, and then
+<DD>Closes this output stream and releases any system resources associated with the stream.
+ <p>
+ The <code>close</code> method of <code>DelegatingOutputStream</code> calls its <code>flush</code> method, and then
calls the <code>close</code> method of its underlying output stream.
<P>
<DD><DL>

Back to the top