Uses of Class
org.eclipse.jdt.core.search.SearchMatch

Packages that use SearchMatch
org.eclipse.jdt.core.search   
org.eclipse.jdt.internal.core.search.matching   
 

Uses of SearchMatch in org.eclipse.jdt.core.search
 

Subclasses of SearchMatch in org.eclipse.jdt.core.search
 class FieldDeclarationMatch
          A Java search match that represents a field declaration.
 class FieldReferenceMatch
          A Java search match that represents a field reference.
 class LocalVariableDeclarationMatch
          A Java search match that represents a local variable declaration.
 class LocalVariableReferenceMatch
          A Java search match that represents a local variable reference.
 class MethodDeclarationMatch
          A Java search match that represents a method declaration.
 class MethodReferenceMatch
          A Java search match that represents a method reference.
 class PackageDeclarationMatch
          A Java search match that represents a package declaration.
 class PackageReferenceMatch
          A Java search match that represents a package reference.
 class ReferenceMatch
          An abstract Java search match that represents a reference.
 class TypeDeclarationMatch
          A Java search match that represents a type declaration.
 class TypeParameterDeclarationMatch
          A Java search match that represents a type parameter declaration or reference.
 class TypeParameterReferenceMatch
          A Java search match that represents a type parameter declaration or reference.
 class TypeReferenceMatch
          A Java search match that represents a type reference.
 

Methods in org.eclipse.jdt.core.search with parameters of type SearchMatch
abstract  void SearchRequestor.acceptSearchMatch(SearchMatch match)
          Accepts the given search match.
 

Uses of SearchMatch in org.eclipse.jdt.internal.core.search.matching
 

Methods in org.eclipse.jdt.internal.core.search.matching that return SearchMatch
 SearchMatch MethodLocator.newDeclarationMatch(ASTNode reference, IJavaElement element, Binding elementBinding, int accuracy, int length, MatchLocator locator)
           
 SearchMatch PatternLocator.newDeclarationMatch(ASTNode reference, IJavaElement element, Binding elementBinding, int accuracy, int length, MatchLocator locator)
           
 SearchMatch OrLocator.newDeclarationMatch(ASTNode reference, IJavaElement element, Binding elementBinding, int accuracy, int length, MatchLocator locator)
           
 SearchMatch ConstructorLocator.newDeclarationMatch(ASTNode reference, IJavaElement element, Binding binding, int accuracy, int length, MatchLocator locator)
           
 SearchMatch MatchLocator.newDeclarationMatch(IJavaElement element, Binding binding, int accuracy, int offset, int length)
           
 SearchMatch MatchLocator.newDeclarationMatch(IJavaElement element, Binding binding, int accuracy, int offset, int length, SearchParticipant participant, IResource resource)
           
 SearchMatch MatchLocator.newLocalVariableReferenceMatch(IJavaElement enclosingElement, int accuracy, int offset, int length, ASTNode reference)
           
 SearchMatch MatchLocator.newTypeParameterReferenceMatch(IJavaElement enclosingElement, int accuracy, int offset, int length, ASTNode reference)
           
 

Methods in org.eclipse.jdt.internal.core.search.matching with parameters of type SearchMatch
protected  void MatchLocator.report(SearchMatch match)
           
protected  void MatchLocator.reportAccurateEnumConstructorReference(SearchMatch match, FieldDeclaration field, AllocationExpression allocation)
          Finds the accurate positions of each valid token in the source and reports a reference to this token to the search requestor.
protected  void MatchLocator.reportAccurateFieldReference(SearchMatch[] matches, QualifiedNameReference qNameRef)
          Finds the accurate positions of each valid token in the source and reports a reference to this token to the search requestor.
protected  void MatchLocator.reportAccurateParameterizedMethodReference(SearchMatch match, ASTNode statement, TypeReference[] typeArguments)
          Finds the accurate positions of the sequence of tokens given by qualifiedName in the source and reports a reference to this parameterized type name to the search requestor.
protected  void MatchLocator.reportAccurateParameterizedTypeReference(SearchMatch match, TypeReference typeRef, int index, TypeReference[] typeArguments)
          Finds the accurate positions of the sequence of tokens given by qualifiedName in the source and reports a reference to this parameterized type name to the search requestor.
protected  void MatchLocator.reportAccurateTypeReference(SearchMatch match, ASTNode typeRef, char[] name)
          Finds the accurate positions of the sequence of tokens given by qualifiedName in the source and reports a reference to this this qualified name to the search requestor.