diff options
| author | Michael Koch <konqueror@gmx.de> | 2003-03-23 19:11:19 +0000 |
|---|---|---|
| committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-03-23 19:11:19 +0000 |
| commit | 93b3986a7fd5c8e4de2e4c0479e9c4e3866104b0 (patch) | |
| tree | efabea7956e26714f1be960193c07e0ff3930246 /libjava/java/io/FilterWriter.java | |
| parent | 4d1da12a32cf622224bb30a3f85131e10c842402 (diff) | |
BufferedOutputStream.java: Reformated.
2003-03-23 Michael Koch <konqueror@gmx.de>
* java/io/BufferedOutputStream.java:
Reformated.
* java/io/BufferedReader.java:
Reformated.
* java/io/ByteArrayOutputStream.java
(size): Fixed @see tag.
* java/io/CharArrayWriter.java
(size): Fixed @see tag.
* java/io/DataInput.java:
Reformated.
* java/io/DataOutput.java:
Reformated.
* java/io/DataOutputStream.java:
Merged copyright years with classpath.
* java/io/Externalizable.java:
Reformated.
* java/io/FileFilter.java:
Reformated.
* java/io/FileInputStream.java:
Merged copyright years with classpath.
* java/io/FileOutputStream.java:
Merged copyright years with classpath.
* java/io/FilePermission.java
(FilePermission): Replaced @XXX with FIXME:.
* java/io/FileWriter.java:
Reformated.
* java/io/FilenameFilter.java:
Reformated.
* java/io/FilterInputStream.java:
Reformated.
* java/io/FilterOutputStream.java:
Reformated.
* java/io/FilterReader.java:
Reformated.
* java/io/FilterWriter.java:
Reformated.
* java/io/LineNumberInputStream.java
(LineNumberInputStream): Replaced @code with HTML tags to make javadoc
happy.
(getLineNumber): Fixed @return tag.
* java/io/ObjectInput.java:
Reformated.
* java/io/ObjectOutput.java:
Reformated.
* java/io/ObjectStreamClass.java:
Reformated.
* java/io/PrintStream.java:
Merged copyright years with classpath.
* java/io/PushbackReader.java
(PushbackReader): Replaced @code with @param.
* java/io/SerializablePermission.java:
Reformated.
* java/io/StreamTokenizer.java
(resetSyntax): Fixed @see tag.
From-SVN: r64748
Diffstat (limited to 'libjava/java/io/FilterWriter.java')
| -rw-r--r-- | libjava/java/io/FilterWriter.java | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/libjava/java/io/FilterWriter.java b/libjava/java/io/FilterWriter.java index f476dfee3f5..87bae4f0bd8 100644 --- a/libjava/java/io/FilterWriter.java +++ b/libjava/java/io/FilterWriter.java @@ -56,22 +56,12 @@ package java.io; */ public abstract class FilterWriter extends Writer { - /* - * Instance Variables - */ - /** * This is the subordinate <code>Writer</code> that this class * redirects its method calls to. */ protected Writer out; - /*************************************************************************/ - - /* - * Constructors - */ - /** * This method initializes an instance of <code>FilterWriter</code> * to write to the specified subordinate <code>Writer</code>. @@ -86,12 +76,6 @@ public abstract class FilterWriter extends Writer this.out = out; } - /*************************************************************************/ - - /* - * Instance Methods - */ - /** * This method closes the underlying <code>Writer</code>. Any * further attempts to write to this stream may throw an exception. @@ -103,8 +87,6 @@ public abstract class FilterWriter extends Writer out.close(); } - /*************************************************************************/ - /** * This method attempt to flush all buffered output to be written to the * underlying output sink. @@ -116,8 +98,6 @@ public abstract class FilterWriter extends Writer out.flush(); } - /*************************************************************************/ - /** * This method writes a single char of output to the underlying * <code>Writer</code>. @@ -131,8 +111,6 @@ public abstract class FilterWriter extends Writer out.write(b); } - /*************************************************************************/ - /** * This method writes <code>len</code> chars from the array <code>buf</code> * starting at index <code>offset</code> to the underlying @@ -149,8 +127,6 @@ public abstract class FilterWriter extends Writer out.write(buf, offset, len); } - /*************************************************************************/ - /** * This method writes <code>len</code> chars from the <code>String</code> * starting at position <code>offset</code>. |
