Home | History | Annotate | Download | only in lib

Lines Matching refs:methodName

363     public static String fullMethodDescriptorToUserName (final String classJavaName, String methodName, final String methoddescriptor)
365 if ("<init>".equals (methodName))
366 methodName = simpleClassName (classJavaName);
367 if ("<clinit>".equals (methodName))
368 methodName = "<static class initializer>";
370 return methodName + ' ' + methodDescriptorToUserName (methoddescriptor);
374 public static String fullMethodDescriptorToFullUserName (final String classJavaName, String methodName, final String methoddescriptor)
376 if ("<init>".equals (methodName))
377 methodName = simpleClassName (classJavaName);
378 if ("<clinit>".equals (methodName))
379 methodName = "<static class initializer>";
381 return classJavaName + '.' + methodName + ' ' + methodDescriptorToUserName (methoddescriptor);