Lines Matching refs:meth
11 void printMethodInfo(Method meth) { in printMethodInfo() argument
15 System.out.println("Method name is " + meth.getName()); in printMethodInfo()
17 + meth.getDeclaringClass().getName()); in printMethodInfo()
18 params = meth.getParameterTypes(); in printMethodInfo()
21 exceptions = meth.getExceptionTypes(); in printMethodInfo()
24 System.out.println(" Return type is " + meth.getReturnType().getName()); in printMethodInfo()
26 + Integer.toHexString(meth.getModifiers())); in printMethodInfo()
60 Method meth = null; in run() local
65 meth = target.getMethod("myMethod", new Class[] { int.class }); in run()
67 if (meth.getDeclaringClass() != target) in run()
69 printMethodInfo(meth); in run()
71 meth = target.getMethod("myMethod", new Class[] { float.class }); in run()
72 printMethodInfo(meth); in run()
74 meth = target.getMethod("myNoargMethod", (Class[]) null); in run()
75 printMethodInfo(meth); in run()
77 meth = target.getMethod("myMethod", in run()
79 printMethodInfo(meth); in run()
91 boxval = (Integer) meth.invoke(instance, argList); in run()
95 meth = target.getMethod("myNoargMethod", (Class[]) null); in run()
96 meth.invoke(instance, (Object[]) null); in run()
99 meth = target.getMethod("throwingMethod", (Class[]) null); in run()
101 meth.invoke(instance, (Object[]) null); in run()