diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-20 09:13:19 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-20 09:13:19 +0000 |
commit | 9051349abe19ff2a290a38dcf57a7694f4fe00ee (patch) | |
tree | 106050eb91d72a5bcb3faae38a265f0b655891b5 /libjava/java/io/PrintWriter.java | |
parent | 06053d01b5edd0f7841f942d6caeff51f1924225 (diff) | |
download | ppe42-gcc-9051349abe19ff2a290a38dcf57a7694f4fe00ee.tar.gz ppe42-gcc-9051349abe19ff2a290a38dcf57a7694f4fe00ee.zip |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66992 138bc75d-0d04-0410-961f-82ee72b054a4
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 acc6ae46e3d..9358ddaea5d 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 { /** |