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
This commit is contained in:
Michael Koch 2004-04-20 12:30:19 +00:00 committed by Michael Koch
parent 9f714d5eec
commit cf6f7d5589
22 changed files with 207 additions and 158 deletions

View file

@ -238,16 +238,16 @@ public class ThreadGroup
* Check whether this ThreadGroup is an ancestor of the specified
* ThreadGroup, or if they are the same.
*
* @param g the group to test on
* @param group the group to test on
* @return whether this ThreadGroup is a parent of the specified group
*/
public final boolean parentOf(ThreadGroup tg)
public final boolean parentOf(ThreadGroup group)
{
while (tg != null)
while (group != null)
{
if (tg == this)
if (group == this)
return true;
tg = tg.parent;
group = group.parent;
}
return false;
}
@ -535,7 +535,7 @@ public class ThreadGroup
* manner.
*
* @param thread the thread that exited
* @param exception the uncaught exception
* @param t the uncaught throwable
* @throws NullPointerException if t is null
* @see ThreadDeath
* @see System#err