Lines Matching defs:myMethod
114 meth = target.getMethod("myMethod", new Class[] { int.class });
120 meth = target.getMethod("myMethod", new Class[] { float.class });
126 meth = target.getMethod("myMethod",
345 targ.myMethod(17);
483 public int myMethod(float floatArg) {
484 System.out.println("myMethod (F)I " + floatArg);
503 public int myMethod(int intarg) throws NullPointerException, IOException {
504 System.out.println("myMethod (I)I");
509 public int myMethod(String[] strarg, float f, char c) {
510 System.out.println("myMethod: " + strarg[0] + " " + f + " " + c + " !");