Beispiel #1
0
 public MethodSignature makeMethodSig(
     int modifiers,
     String name,
     Class declaringType,
     Class[] parameterTypes,
     String[] parameterNames,
     Class[] exceptionTypes,
     Class returnType) {
   MethodSignatureImpl ret =
       new MethodSignatureImpl(
           modifiers,
           name,
           declaringType,
           parameterTypes,
           parameterNames,
           exceptionTypes,
           returnType);
   ret.setLookupClassLoader(lookupClassLoader);
   return ret;
 }
Beispiel #2
0
 public MethodSignature makeMethodSig(String stringRep) {
   MethodSignatureImpl ret = new MethodSignatureImpl(stringRep);
   ret.setLookupClassLoader(lookupClassLoader);
   return ret;
 }