Lines Matching refs:m

195     Method m;  in testMethodReflection()  local
197 m = Main.class.getDeclaredMethod("IV", int.class); in testMethodReflection()
198 System.out.println(Arrays.toString(m.getParameterTypes())); in testMethodReflection()
199 show(m.invoke(null, 4444)); in testMethodReflection()
200 System.out.println(Arrays.toString(m.getParameterTypes())); in testMethodReflection()
202 m = Main.class.getDeclaredMethod("IIV", int.class, int.class); in testMethodReflection()
203 System.out.println(Arrays.toString(m.getParameterTypes())); in testMethodReflection()
204 show(m.invoke(null, 1111, 2222)); in testMethodReflection()
206 m = Main.class.getDeclaredMethod("III", int.class, int.class); in testMethodReflection()
207 System.out.println(Arrays.toString(m.getParameterTypes())); in testMethodReflection()
208 show(m.invoke(null, 1111, 2222)); in testMethodReflection()
210 m = Main.class.getDeclaredMethod("sumArray", int[].class); in testMethodReflection()
211 System.out.println(Arrays.toString(m.getParameterTypes())); in testMethodReflection()
212 show(m.invoke(null, new int[] { 1, 2, 3, 4 })); in testMethodReflection()
214 m = Main.class.getDeclaredMethod("concat", String[].class); in testMethodReflection()
215 System.out.println(Arrays.toString(m.getParameterTypes())); in testMethodReflection()
216 show(m.invoke(null, (Object) new String[] { "h", "e", "l", "l", "o" })); in testMethodReflection()
218m = Main.class.getDeclaredMethod("ZBCDFIJSV", boolean.class, byte.class, char.class, double.class,… in testMethodReflection()
219 System.out.println(Arrays.toString(m.getParameterTypes())); in testMethodReflection()
220 show(m.invoke(null, true, (byte) 0, '1', 2, 3, 4, 5, (short) 6)); in testMethodReflection()
222m = Main.class.getDeclaredMethod("ZBCDLFIJSV", boolean.class, byte.class, char.class, double.class… in testMethodReflection()
223 System.out.println(Arrays.toString(m.getParameterTypes())); in testMethodReflection()
224 show(m.invoke(null, true, (byte) 0, '1', 2, "hello world", 3, 4, 5, (short) 6)); in testMethodReflection()
227 m = Main.class.getDeclaredMethod("thrower"); in testMethodReflection()
228 System.out.println(Arrays.toString(m.getParameterTypes())); in testMethodReflection()
229 show(m.invoke(null)); in testMethodReflection()