Home | History | Annotate | Download | only in util

Lines Matching refs:Method

57      * Finds the method with the given name and descriptor in the given
60 public Method findMethod(Clazz referencingClass,
65 return (Method)findMember(referencingClass, clazz, name, descriptor, false);
112 * Returns whether the given method is overridden anywhere down the class
116 Method method)
118 String name = method.getName(clazz);
119 String descriptor = method.getDescriptor(clazz);
121 // Go looking for the method down the class hierarchy.
133 // We've found an overriding method.