diff options
author | Michael Koch <konqueror@gmx.de> | 2004-11-16 11:30:14 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2004-11-16 11:30:14 +0000 |
commit | be06f47bc163661477f50bf46e103314f1c24498 (patch) | |
tree | 35bc1efd9744250f460b2be74623c87b86db3c0d /libjava/java/io/StreamTokenizer.java | |
parent | d39289db5ad1bd3146c0f3aca3d1ebcbd83a3a14 (diff) | |
download | gcc-be06f47bc163661477f50bf46e103314f1c24498.zip gcc-be06f47bc163661477f50bf46e103314f1c24498.tar.gz gcc-be06f47bc163661477f50bf46e103314f1c24498.tar.bz2 |
BufferedReader.java, [...]: Fixed javadocs all over.
2004-11-16 Michael Koch <konqueror@gmx.de>
* java/io/BufferedReader.java,
java/io/FileInputStream.java,
java/io/FileOutputStream.java,
java/io/FileWriter.java,
java/io/OutputStreamWriter.java,
java/io/PipedInputStream.java,
java/io/PipedOutputStream.java,
java/io/PipedReader.java,
java/io/PipedWriter.java,
java/io/PrintStream.java,
java/io/PushbackInputStream.java,
java/io/RandomAccessFile.java,
java/io/Reader.java,
java/io/StreamTokenizer.java,
java/io/StringReader.java,
java/net/NetworkInterface.java,
java/net/URLClassLoader.java,
java/nio/ByteOrder.java,
java/nio/channels/Channel.java:
Fixed javadocs all over.
From-SVN: r90727
Diffstat (limited to 'libjava/java/io/StreamTokenizer.java')
-rw-r--r-- | libjava/java/io/StreamTokenizer.java | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/libjava/java/io/StreamTokenizer.java b/libjava/java/io/StreamTokenizer.java index 5c777b3..dd6acb3 100644 --- a/libjava/java/io/StreamTokenizer.java +++ b/libjava/java/io/StreamTokenizer.java @@ -122,7 +122,7 @@ public class StreamTokenizer * them. For details on how this method operates by default, see * <code>StreamTokenizer(Reader)</code>. * - * @param in The <code>InputStream</code> to read from + * @param is The <code>InputStream</code> to read from * * @deprecated Since JDK 1.1. */ @@ -150,7 +150,7 @@ public class StreamTokenizer * <li>C and C++ (//) comments are not recognized</li> * </ul> * - * @param in The <code>Reader</code> to read chars from + * @param r The <code>Reader</code> to read chars from */ public StreamTokenizer(Reader r) { @@ -170,7 +170,7 @@ public class StreamTokenizer * This method sets the comment attribute on the specified * character. Other attributes for the character are cleared. * - * @param c The character to set the comment attribute for, passed as an int + * @param ch The character to set the comment attribute for, passed as an int */ public void commentChar(int ch) { @@ -517,7 +517,7 @@ public class StreamTokenizer * quote, or comment) will be set on this character. This character will * parse as its own token. * - * @param c The character to make ordinary, passed as an int + * @param ch The character to make ordinary, passed as an int */ public void ordinaryChar(int ch) { @@ -533,9 +533,9 @@ public class StreamTokenizer * range parse as its own token. * * @param low The low end of the range of values to set the whitespace - * attribute for - * @param high The high end of the range of values to set the whitespace - * attribute for + * attribute for + * @param hi The high end of the range of values to set the whitespace + * attribute for */ public void ordinaryChars(int low, int hi) { @@ -575,7 +575,7 @@ public class StreamTokenizer * This method sets the quote attribute on the specified character. * Other attributes for the character are cleared. * - * @param c The character to set the quote attribute for, passed as an int. + * @param ch The character to set the quote attribute for, passed as an int. */ public void quoteChar(int ch) { @@ -670,9 +670,9 @@ public class StreamTokenizer * specified range, range terminators included. * * @param low The low end of the range of values to set the whitespace - * attribute for - * @param high The high end of the range of values to set the whitespace - * attribute for + * attribute for + * @param hi The high end of the range of values to set the whitespace + * attribute for */ public void whitespaceChars(int low, int hi) { @@ -692,9 +692,9 @@ public class StreamTokenizer * specified range, range terminators included. * * @param low The low end of the range of values to set the alphabetic - * attribute for - * @param high The high end of the range of values to set the alphabetic - * attribute for + * attribute for + * @param hi The high end of the range of values to set the alphabetic + * attribute for */ public void wordChars(int low, int hi) { |