public interface Scope
Modifier and Type | Method and Description |
---|---|
boolean |
matches(java.lang.String className,
java.lang.String methodName,
java.lang.String methodDesc)
Determines whether this scope matches the given class name (including
package name), method name, and method type descriptor.
|
boolean matches(java.lang.String className, java.lang.String methodName, java.lang.String methodDesc)
className
- standard or internal name of the class to matchmethodName
- name of the method to matchmethodDesc
- type descriptor of the method to matchtrue
if the scope matches the given class name, method
name, and method type descriptor, false
otherwise.