diff options
author | Michael Koch <konqueror@gmx.de> | 2004-04-20 12:30:19 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2004-04-20 12:30:19 +0000 |
commit | cf6f7d55897e0c6b1badbcfc241e512a4bb154b8 (patch) | |
tree | d5b22b275323c4e4a0c6ebb05e86b4a087ef279d /libjava/java/lang/Integer.java | |
parent | 9f714d5eec05594569dd89920353272606622d8a (diff) | |
download | gcc-cf6f7d55897e0c6b1badbcfc241e512a4bb154b8.zip gcc-cf6f7d55897e0c6b1badbcfc241e512a4bb154b8.tar.gz gcc-cf6f7d55897e0c6b1badbcfc241e512a4bb154b8.tar.bz2 |
Byte.java, [...]: Fixed javadocs, coding style and argument names all over.
2004-04-20 Michael Koch <konqueror@gmx.de>
* java/lang/Byte.java,
java/lang/CharSequence.java,
java/lang/ClassLoader.java,
java/lang/Compiler.java,
java/lang/Double.java,
java/lang/Float.java,
java/lang/Integer.java,
java/lang/Long.java,
java/lang/Math.java,
java/lang/Number.java,
java/lang/Package.java,
java/lang/Runtime.java,
java/lang/RuntimePermission.java,
java/lang/SecurityManager.java,
java/lang/Short.java,
java/lang/StringBuffer.java,
java/lang/System.java,
java/lang/ThreadGroup.java,
java/lang/Throwable.java,
java/lang/reflect/InvocationHandler.java,
java/lang/reflect/Proxy.java:
Fixed javadocs, coding style and argument names all over.
From-SVN: r80899
Diffstat (limited to 'libjava/java/lang/Integer.java')
-rw-r--r-- | libjava/java/lang/Integer.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/lang/Integer.java b/libjava/java/lang/Integer.java index f9d9018..9c8329d 100644 --- a/libjava/java/lang/Integer.java +++ b/libjava/java/lang/Integer.java @@ -220,9 +220,9 @@ public final class Integer extends Number implements Comparable * within <code>MIN_VALUE</code> to <code>MAX_VALUE</code>, inclusive. * Unlike Double.parseDouble, you may not have a leading '+'. * - * @param s the <code>String</code> to convert + * @param str the <code>String</code> to convert * @param radix the radix (base) to use in the conversion - * @return the <code>String</code> argument converted to </code>int</code> + * @return the <code>String</code> argument converted to <code>int</code> * @throws NumberFormatException if <code>s</code> cannot be parsed as an * <code>int</code> */ @@ -414,7 +414,7 @@ public final class Integer extends Number implements Comparable * interpret the value of the property. * * @param nm the name of the system property - * @param val the default value + * @param def the default value * @return the value of the system property, or the default * @throws SecurityException if accessing the system property is forbidden * @see System#getProperty(String) @@ -461,7 +461,7 @@ public final class Integer extends Number implements Comparable * Finally, the value must be in the range <code>MIN_VALUE</code> to * <code>MAX_VALUE</code>, or an exception is thrown. * - * @param s the <code>String</code> to interpret + * @param str the <code>String</code> to interpret * @return the value of the String as an <code>Integer</code> * @throws NumberFormatException if <code>s</code> cannot be parsed as a * <code>int</code> |