Klasse MethodNameMatchRequestor
java.lang.Object
org.aspectj.org.eclipse.jdt.core.search.MethodNameMatchRequestor
A
MethodNameMatchRequestor collects matches from a searchAllMethodNames
query to a SearchEngine. Clients must subclass this abstract class and pass an instance to the
SearchEngine.searchAllMethodNames(char[] packageName, int pkgMatchRule, char[] declaringQualification, int declQualificationMatchRule, char[] delcaringSimpleName, int declSimpleNameMatchRule, char[] methodName, int methodMatchRule, IJavaSearchScope scope, MethodNameMatchRequestor methodRequestor, int waitingPolicy, IProgressMonitor progressMonitor) method.
While MethodNameRequestor only reports method names information (e.g. package, enclosing types, method name, modifiers, etc.),
this class reports MethodNameMatch objects instead, which store this information and can return
an IMethod handle.
This class may be subclassed by clients.
- Seit:
- 3.12
- Siehe auch:
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungabstract voidAccepts a method name match (MethodNameMatch) which contains a method information as package name, enclosing types names, method name, modifiers, etc.
-
Konstruktordetails
-
MethodNameMatchRequestor
public MethodNameMatchRequestor()
-
-
Methodendetails
-
acceptMethodNameMatch
Accepts a method name match (MethodNameMatch) which contains a method information as package name, enclosing types names, method name, modifiers, etc.- Parameter:
match- the match which contains all method information
-