Searched defs:myMethod (Results 1 - 1 of 1) sorted by relevance

/art/test/046-reflect/src/
H A DMain.java128 meth = target.getMethod("myMethod", new Class[] { int.class });
134 meth = target.getMethod("myMethod", new Class[] { float.class });
140 meth = target.getMethod("myMethod",
363 targ.myMethod(17);
603 public int myMethod(float floatArg) { method in class:SuperTarget
604 System.out.println("myMethod (F)I " + floatArg);
623 public int myMethod(int intarg) throws NullPointerException, IOException { method in class:Target
624 System.out.println("myMethod (I)I");
629 public int myMethod(String[] strarg, float f, char c) { method in class:Target
630 System.out.println("myMethod
[all...]

Completed in 24 milliseconds