Lines Matching refs:proxy
33 Object proxy = createProxy(proxyMe); in main() local
35 if (!Proxy.isProxyClass(proxy.getClass())) in main()
37 if (Proxy.getInvocationHandler(proxy) == null) in main()
41 Shapes shapes = (Shapes) proxy; in main()
45 Quads quads = (Quads) proxy; in main()
48 Colors colors = (Colors) proxy; in main()
53 Trace trace = (Trace) proxy; in main()
79 Method[] methods = proxy.getClass().getDeclaredMethods(); in main()
82 Arrays.deepToString(proxy.getClass().getInterfaces())); in main()
103 Object proxy = null; in createProxy() local
107 proxy = cons.newInstance(handler); in createProxy()
118 return proxy; in createProxy()
235 public Object invoke(Object proxy, Method method, Object[] args) in invoke() argument