Home | History | Annotate | Download | only in src

Lines Matching defs:proxy

32        I2 proxy = (I2) Proxy.newProxyInstance(NarrowingTest.class.getClassLoader(),
37 public Object invoke(Object proxy, Method method,
48 Main.registerProxyClassName(proxy.getClass().getCanonicalName());
50 Method[] methods = proxy.getClass().getDeclaredMethods();
52 System.out.println("Proxy methods: " +
55 System.out.println("Invoking foo using I2 type: " + proxy.foo());
57 I1 proxyAsParent = proxy;
61 proxy.foo();
68 System.out.println("Proxy narrowed invocation return type passed");