diff options
author | Michael Koch <konqueror@gmx.de> | 2003-05-20 09:13:19 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-05-20 09:13:19 +0000 |
commit | c93aa80414eb376508a8e6dc4ef1d6cf8175535e (patch) | |
tree | 106050eb91d72a5bcb3faae38a265f0b655891b5 /libjava/java/io/PrintWriter.java | |
parent | c2a40660aabcd9c19af4ddb1b0ee8698a9a954e4 (diff) | |
download | gcc-c93aa80414eb376508a8e6dc4ef1d6cf8175535e.zip gcc-c93aa80414eb376508a8e6dc4ef1d6cf8175535e.tar.gz gcc-c93aa80414eb376508a8e6dc4ef1d6cf8175535e.tar.bz2 |
DataInputStream.java: Reformatted, Replaced < and & with html entitites in documentation.
2003-05-20 Michael Koch <konqueror@gmx.de>
* java/io/DataInputStream.java:
Reformatted, Replaced < and & with html entitites in documentation.
* java/io/File.java:
Reformatted.
* java/io/PrintWriter.java:
Moved class documentation.
From-SVN: r66992
Diffstat (limited to 'libjava/java/io/PrintWriter.java')
-rw-r--r-- | libjava/java/io/PrintWriter.java | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/libjava/java/io/PrintWriter.java b/libjava/java/io/PrintWriter.java index acc6ae4..9358dda 100644 --- a/libjava/java/io/PrintWriter.java +++ b/libjava/java/io/PrintWriter.java @@ -37,27 +37,27 @@ exception statement from your version. */ package java.io; -/** - * This class prints Java primitive values and objects to a stream as - * text. None of the methods in this class throw an exception. However, - * errors can be detected by calling the <code>checkError()</code> method. - * Additionally, this stream can be designated as "autoflush" when - * created so that any writes are automatically flushed to the underlying - * output sink whenever one of the <code>println</code> methods is - * called. (Note that this differs from the <code>PrintStream</code> - * class which also auto-flushes when it encounters a newline character - * in the chars written). - * - * @author Per Bothner <bothner@cygnus.com> - * @author Aaron M. Renn (arenn@urbanophile.com) - * @date April 17, 1998. - */ /* Written using "Java Class Libraries", 2nd edition, plus online * API docs for JDK 1.2 beta from http://www.javasoft.com. * Status: Believed complete and correct. * However, should use native methods for conversion. */ +/** + * This class prints Java primitive values and objects to a stream as + * text. None of the methods in this class throw an exception. However, + * errors can be detected by calling the <code>checkError()</code> method. + * Additionally, this stream can be designated as "autoflush" when + * created so that any writes are automatically flushed to the underlying + * output sink whenever one of the <code>println</code> methods is + * called. (Note that this differs from the <code>PrintStream</code> + * class which also auto-flushes when it encounters a newline character + * in the chars written). + * + * @author Per Bothner <bothner@cygnus.com> + * @author Aaron M. Renn <arenn@urbanophile.com> + * @date April 17, 1998. + */ public class PrintWriter extends Writer { /** |