From ec55bd233aae78967918d8ee84be2ba8ca468c78 Mon Sep 17 00:00:00 2001 From: mkoch Date: Tue, 20 Apr 2004 12:30:19 +0000 Subject: 2004-04-20 Michael Koch * 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80899 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/lang/reflect/InvocationHandler.java | 43 ++++++++++++------------ 1 file changed, 22 insertions(+), 21 deletions(-) (limited to 'libjava/java/lang/reflect/InvocationHandler.java') diff --git a/libjava/java/lang/reflect/InvocationHandler.java b/libjava/java/lang/reflect/InvocationHandler.java index 91907e280c7..514d943f5ee 100644 --- a/libjava/java/lang/reflect/InvocationHandler.java +++ b/libjava/java/lang/reflect/InvocationHandler.java @@ -49,37 +49,38 @@ package java.lang.reflect; * interface. But in order for the proxy instance to do any good, it * needs to know what to do when interface methods are invoked! So, * this interface is basically a cool wrapper that provides runtime - * code generation needed by proxy instances.

+ * code generation needed by proxy instances. * - * While this interface was designed for use by Proxy, it will also - * work on any object in general.

+ *

While this interface was designed for use by Proxy, it will also + * work on any object in general.

* - * Hints for implementing this class:
+ *

Hints for implementing this class:

+ * * * *

For a fun time, create an InvocationHandler that handles the - * methods of a proxy instance of the InvocationHandler interface! + * methods of a proxy instance of the InvocationHandler interface!

* * @see Proxy * @see UndeclaredThrowableException * - * @author Eric Blake + * @author Eric Blake (ebb9@email.byu.edu) * @since 1.3 * @status updated to 1.4 */ -- cgit v1.2.1