private static MethodInfo getMethodInfo(ClassInfo classInfo, Method method) {
   Class returnTypeClass = method.getReturnType();
   short access_flags = (short) method.getModifiers();
   return MethodInfo.create(
       classInfo,
       method.getName(),
       getTypes(method.getParameterTypes()),
       getType(returnTypeClass),
       access_flags);
 }
Example #2
0
/* 271:    */   
/* 272:    */   private static MethodInfo getMethodInfo(ClassInfo classInfo, Method method)
/* 273:    */   {
/* 274:308 */     Class returnTypeClass = method.getReturnType();
/* 275:309 */     short access_flags = (short)method.getModifiers();
/* 276:310 */     return MethodInfo.create(classInfo, method.getName(), getTypes(method.getParameterTypes()), getType(returnTypeClass), access_flags);
/* 277:    */   }