Home | History | Annotate | Download | only in src

Lines Matching refs: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();
51 System.out.println("Proxy methods: " +
54 System.out.println("Invoking foo using I2 type: " + proxy.foo());
56 I1 proxyAsParent = proxy;
60 proxy.foo();
67 System.out.println("Proxy narrowed invocation return type passed");