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

/art/test/046-reflect/src/
H A DMain.java130 meth = target.getMethod("myMethod", new Class[] { int.class });
136 meth = target.getMethod("myMethod", new Class[] { float.class });
142 meth = target.getMethod("myMethod",
379 targ.myMethod(17);
766 public int myMethod(float floatArg) { method in class:SuperTarget
767 System.out.println("myMethod (F)I " + floatArg);
786 public int myMethod(int intarg) throws NullPointerException, IOException { method in class:Target
787 System.out.println("myMethod (I)I");
792 public int myMethod(String[] strarg, float f, char c) { method in class:Target
793 System.out.println("myMethod
[all...]

Completed in 12 milliseconds