From c93aa80414eb376508a8e6dc4ef1d6cf8175535e Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Tue, 20 May 2003 09:13:19 +0000 Subject: DataInputStream.java: Reformatted, Replaced < and & with html entitites in documentation. 2003-05-20 Michael Koch * 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 --- libjava/java/io/PrintWriter.java | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'libjava/java/io/PrintWriter.java') 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 checkError() 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 println methods is - * called. (Note that this differs from the PrintStream - * class which also auto-flushes when it encounters a newline character - * in the chars written). - * - * @author Per Bothner - * @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 checkError() 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 println methods is + * called. (Note that this differs from the PrintStream + * class which also auto-flushes when it encounters a newline character + * in the chars written). + * + * @author Per Bothner + * @author Aaron M. Renn + * @date April 17, 1998. + */ public class PrintWriter extends Writer { /** -- cgit v1.2.3