diff options
Diffstat (limited to 'libjava/testsuite/libjava.lang/TestProxy.java')
-rw-r--r-- | libjava/testsuite/libjava.lang/TestProxy.java | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/libjava/testsuite/libjava.lang/TestProxy.java b/libjava/testsuite/libjava.lang/TestProxy.java new file mode 100644 index 0000000..d1411a6 --- /dev/null +++ b/libjava/testsuite/libjava.lang/TestProxy.java @@ -0,0 +1,34 @@ +import java.lang.reflect.*; +import java.net.*; + +public class TestProxy +{ + public 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 (); + } + } +} |