Esempio n. 1
0
 private Method getMethod() {
   try {
     Class callerType = caller.getValueTypeClass();
     Method method = callerType.getMethod(name, getParameterTypes());
     return method;
   } catch (java.lang.NoSuchMethodException nsme) {
     nsme.printStackTrace();
     return null;
   }
 }