Lines Matching refs:proxy
32 public Object invoke(Object proxy, Method method, Object[] args) { in invoke() argument
39 testMethod0(proxy, args); in invoke()
41 testMethod1(proxy, args); in invoke()
43 testMethod10(proxy, args); in invoke()
45 testMethod10Even(proxy, args); in invoke()
50 private void testMethod0(Object proxy, Object[] args) { in testMethod0() argument
54 Main.assertEquals(proxy, arg0); in testMethod0()
57 private void testMethod1(Object proxy, Object[] args) { in testMethod1() argument
61 Main.assertEquals(proxy, arg0); in testMethod1()
68 private void testMethod10(Object proxy, Object[] args) { in testMethod10() argument
72 Main.assertEquals(proxy, arg0); in testMethod10()
82 private void testMethod10Even(Object proxy, Object[] args) { in testMethod10Even() argument
87 Main.assertEquals(proxy, arg0); in testMethod10Even()
126 TestInterface proxy = (TestInterface) Proxy.newProxyInstance( in main() local
130 System.out.println("proxy: " + proxy.getClass().getName()); in main()
132 proxy.method0(); in main()
133 proxy.method1("a"); in main()
134 proxy.method10("one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten"); in main()
135 proxy.method10Even((byte) 1, "two", (short) 3, "four", 5, "six", 7L, "eight", 9.0, "ten"); in main()