diff options
Diffstat (limited to 'libjava/testsuite/libjava.lang/TestProxy.java')
-rw-r--r-- | libjava/testsuite/libjava.lang/TestProxy.java | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/libjava/testsuite/libjava.lang/TestProxy.java b/libjava/testsuite/libjava.lang/TestProxy.java deleted file mode 100644 index 08e16aa..0000000 --- a/libjava/testsuite/libjava.lang/TestProxy.java +++ /dev/null @@ -1,36 +0,0 @@ -import java.lang.reflect.Proxy; -import java.lang.reflect.InvocationHandler; -import java.lang.reflect.Method; -import java.net.*; - -public class TestProxy -{ - public static class MyInvocationHandler implements InvocationHandler - { - public Object invoke (Object proxy, - Method method, - Object[] args) - throws Throwable - { - System.out.println (args[0]); - return null; - } - } - - public static void main (String[] args) - { - try { - InvocationHandler ih = new MyInvocationHandler(); - - SocketOptions c = (SocketOptions) - Proxy.newProxyInstance (SocketOptions.class.getClassLoader(), - new Class[]{SocketOptions.class}, - ih); - - c.getOption (555); - - } catch (Exception e) { - e.printStackTrace (); - } - } -} |