aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/io/PrintStream.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2004-11-16 11:30:14 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2004-11-16 11:30:14 +0000
commitbe06f47bc163661477f50bf46e103314f1c24498 (patch)
tree35bc1efd9744250f460b2be74623c87b86db3c0d /libjava/java/io/PrintStream.java
parentd39289db5ad1bd3146c0f3aca3d1ebcbd83a3a14 (diff)
downloadgcc-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/PrintStream.java')
-rw-r--r--libjava/java/io/PrintStream.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/libjava/java/io/PrintStream.java b/libjava/java/io/PrintStream.java
index 2e9bfc4..3526473 100644
--- a/libjava/java/io/PrintStream.java
+++ b/libjava/java/io/PrintStream.java
@@ -279,7 +279,7 @@ public class PrintStream extends FilterOutputStream
* values are printed as "true" and <code>false</code> values are printed
* as "false".
*
- * @param b The <code>boolean</code> value to print
+ * @param bool The <code>boolean</code> value to print
*/
public void print (boolean bool)
{
@@ -369,7 +369,7 @@ public class PrintStream extends FilterOutputStream
* This method prints an array of characters to the stream. The actual
* value printed depends on the system default encoding.
*
- * @param s The array of characters to print.
+ * @param charArray The array of characters to print.
*/
public void print (char[] charArray)
{
@@ -393,7 +393,7 @@ public class PrintStream extends FilterOutputStream
* <p>
* This method prints a line termination sequence after printing the value.
*
- * @param b The <code>boolean</code> value to print
+ * @param bool The <code>boolean</code> value to print
*/
public void println (boolean bool)
{
@@ -499,7 +499,7 @@ public class PrintStream extends FilterOutputStream
* <p>
* This method prints a line termination sequence after printing the value.
*
- * @param s The array of characters to print.
+ * @param charArray The array of characters to print.
*/
public void println (char[] charArray)
{
@@ -511,7 +511,7 @@ public class PrintStream extends FilterOutputStream
* enabled, printing a newline character will cause the stream to be
* flushed after the character is written.
*
- * @param b The byte to be written
+ * @param oneByte The byte to be written
*/
public void write (int oneByte)
{