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/ObjectOutput.java | |
parent | 4d1da12a32cf622224bb30a3f85131e10c842402 (diff) | |
download | gcc-93b3986a7fd5c8e4de2e4c0479e9c4e3866104b0.zip gcc-93b3986a7fd5c8e4de2e4c0479e9c4e3866104b0.tar.gz gcc-93b3986a7fd5c8e4de2e4c0479e9c4e3866104b0.tar.bz2 |
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/ObjectOutput.java')
-rw-r--r-- | libjava/java/io/ObjectOutput.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libjava/java/io/ObjectOutput.java b/libjava/java/io/ObjectOutput.java index 1397027..f9e923b 100644 --- a/libjava/java/io/ObjectOutput.java +++ b/libjava/java/io/ObjectOutput.java @@ -58,8 +58,6 @@ public interface ObjectOutput extends DataOutput */ public abstract void write(int b) throws IOException; - /*************************************************************************/ - /** * This method writes all the bytes in the specified byte array to the * output stream. @@ -70,8 +68,6 @@ public interface ObjectOutput extends DataOutput */ public abstract void write(byte[] buf) throws IOException; - /*************************************************************************/ - /** * This method writes <code>len</code> bytes from the specified array * starting at index <code>offset</code> into that array. @@ -85,8 +81,6 @@ public interface ObjectOutput extends DataOutput public abstract void write(byte[] buf, int offset, int len) throws IOException; - /*************************************************************************/ - /** * This method writes a object instance to a stream. The format of the * data written is determined by the actual implementation of this method @@ -97,8 +91,6 @@ public interface ObjectOutput extends DataOutput */ public abstract void writeObject(Object obj) throws IOException; - /*************************************************************************/ - /** * This method causes any buffered data to be flushed out to the underlying * stream @@ -107,8 +99,6 @@ public interface ObjectOutput extends DataOutput */ public abstract void flush() throws IOException; - /*************************************************************************/ - /** * This method closes the underlying stream. * |