• Home
  • Raw
  • Download

Lines Matching refs:meth

34     void printMethodInfo(Method meth) {  in printMethodInfo()  argument
38 System.out.println("Method name is " + meth.getName()); in printMethodInfo()
40 + meth.getDeclaringClass().getName()); in printMethodInfo()
41 params = meth.getParameterTypes(); in printMethodInfo()
44 exceptions = meth.getExceptionTypes(); in printMethodInfo()
47 System.out.println(" Return type is " + meth.getReturnType().getName()); in printMethodInfo()
49 + Integer.toHexString(meth.getModifiers())); in printMethodInfo()
85 Method meth; in checkAccess() local
87 meth = target.getMethod("publicMethod"); in checkAccess()
88 meth.invoke(instance); in checkAccess()
91 meth = target.getMethod("packageMethod"); in checkAccess()
100 meth = target.getMethod("innerMethod"); in checkAccess()
103 meth.invoke(instance); in checkAccess()
125 Method meth = null; in run() local
130 meth = target.getMethod("myMethod", int.class); in run()
132 if (meth.getDeclaringClass() != target) in run()
134 printMethodInfo(meth); in run()
136 meth = target.getMethod("myMethod", float.class); in run()
137 printMethodInfo(meth); in run()
139 meth = target.getMethod("myNoargMethod"); in run()
140 printMethodInfo(meth); in run()
142 meth = target.getMethod("myMethod", String[].class, float.class, char.class); in run()
143 printMethodInfo(meth); in run()
155 boxval = (Integer) meth.invoke(instance, argList); in run()
159 meth = target.getMethod("myNoargMethod"); in run()
160 meth.invoke(instance, (Object[]) null); in run()
163 meth = target.getMethod("throwingMethod"); in run()
165 meth.invoke(instance, (Object[]) null); in run()