From e9f2df069c293a4746e6735f56e0e99a8a8b379d Mon Sep 17 00:00:00 2001 From: shaper Date: Wed, 16 Oct 2002 19:12:53 +0000 Subject: [PATCH] Minor javadoc edits. git-svn-id: https://samskivert.googlecode.com/svn/trunk@870 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- .../java/com/samskivert/io/ExtensiblePrintStream.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/projects/samskivert/src/java/com/samskivert/io/ExtensiblePrintStream.java b/projects/samskivert/src/java/com/samskivert/io/ExtensiblePrintStream.java index 3880d473..e7effc48 100644 --- a/projects/samskivert/src/java/com/samskivert/io/ExtensiblePrintStream.java +++ b/projects/samskivert/src/java/com/samskivert/io/ExtensiblePrintStream.java @@ -1,5 +1,5 @@ // -// $Id: ExtensiblePrintStream.java,v 1.1 2002/10/16 19:09:02 shaper Exp $ +// $Id: ExtensiblePrintStream.java,v 1.2 2002/10/16 19:12:53 shaper Exp $ // // samskivert library - useful routines for java programs // Copyright (C) 2002 Walter Korman @@ -25,7 +25,7 @@ import java.io.UnsupportedEncodingException; /** * Wraps a supplied {@link PrintStream} to allow capturing all data - * written to the stream via various print() and + * written to the stream via the various print() and * println() variants. Derived classes must implement the * {@link #handlePrinted} and {@link #handleNewLine} methods. */ @@ -59,14 +59,14 @@ public abstract class ExtensiblePrintStream extends PrintStream /** * Called with any text printed to the stream, excepting newlines - * resulting from calls to the {@link #println} variants which are - * reported via {@link #handleNewLine}. + * resulting from calls to the various println() methods, + * which are reported via {@link #handleNewLine}. */ public abstract void handlePrinted (String s); /** * Called whenever a newline is printed to the stream by one of the - * {@link #println} variants. + * various println() methods. */ public abstract void handleNewLine ();