Author: mbenson Date: Tue May 23 08:23:55 2006 New Revision: 408931 URL: http://svn.apache.org/viewvc?rev=408931&view=rev Log: xhtmlify javadoc code tags
Modified: ant/core/trunk/src/main/org/apache/tools/ant/util/ReaderInputStream.java Modified: ant/core/trunk/src/main/org/apache/tools/ant/util/ReaderInputStream.java URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/util/ReaderInputStream.java?rev=408931&r1=408930&r2=408931&view=diff ============================================================================== --- ant/core/trunk/src/main/org/apache/tools/ant/util/ReaderInputStream.java (original) +++ ant/core/trunk/src/main/org/apache/tools/ant/util/ReaderInputStream.java Tue May 23 08:23:55 2006 @@ -1,5 +1,5 @@ /* - * Copyright 2004-2005 The Apache Software Foundation. + * Copyright 2004-2006 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,7 +22,7 @@ /** * Adapts a <code>Reader</code> as an <code>InputStream</code>. - * Adapted from <CODE>StringInputStream</CODE>. + * Adapted from <code>StringInputStream</code>. * */ public class ReaderInputStream extends InputStream { @@ -37,22 +37,22 @@ private int begin; /** - * Construct a <CODE>ReaderInputStream</CODE> - * for the specified <CODE>Reader</CODE>. + * Construct a <code>ReaderInputStream</code> + * for the specified <code>Reader</code>. * - * @param reader <CODE>Reader</CODE>. Must not be <code>null</code>. + * @param reader <code>Reader</code>. Must not be <code>null</code>. */ public ReaderInputStream(Reader reader) { in = reader; } /** - * Construct a <CODE>ReaderInputStream</CODE> - * for the specified <CODE>Reader</CODE>, + * Construct a <code>ReaderInputStream</code> + * for the specified <code>Reader</code>, * with the specified encoding. * - * @param reader non-null <CODE>Reader</CODE>. - * @param encoding non-null <CODE>String</CODE> encoding. + * @param reader non-null <code>Reader</code>. + * @param encoding non-null <code>String</code> encoding. */ public ReaderInputStream(Reader reader, String encoding) { this(reader); @@ -64,9 +64,9 @@ } /** - * Reads from the <CODE>Reader</CODE>, returning the same value. + * Reads from the <code>Reader</code>, returning the same value. * - * @return the value of the next character in the <CODE>Reader</CODE>. + * @return the value of the next character in the <code>Reader</code>. * * @exception IOException if the original <code>Reader</code> fails to be read */ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]