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

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

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

Methods in org.eclipse.jdt.core.search that return SearchPattern
static SearchPattern SearchPattern.createAndPattern(SearchPattern leftPattern, SearchPattern rightPattern)
          Deprecated. Unfortunately, this functionality is not fully supported yet (see "https://bugs.eclipse.org/bugs/show_bug.cgi?id=142044" for more details). This might be done in a further version...
static SearchPattern SearchPattern.createOrPattern(SearchPattern leftPattern, SearchPattern rightPattern)
          Returns a search pattern that combines the given two patterns into an "or" pattern.
static SearchPattern SearchPattern.createPattern(IJavaElement element, int limitTo)
          Returns a search pattern based on a given Java element.
static SearchPattern SearchPattern.createPattern(IJavaElement element, int limitTo, int matchRule)
          Returns a search pattern based on a given Java element.
static SearchPattern SearchPattern.createPattern(java.lang.String stringPattern, int searchFor, int limitTo, int matchRule)
          Returns a search pattern based on a given string pattern.
 SearchPattern SearchPattern.currentPattern()
           
abstract  SearchPattern SearchPattern.getBlankPattern()
          Returns a blank pattern that can be used as a record to decode an index key.
 

Methods in org.eclipse.jdt.core.search with parameters of type SearchPattern
 void SearchPattern.acceptMatch(java.lang.String relativePath, java.lang.String containerPath, char separator, SearchPattern pattern, IndexQueryRequestor requestor, SearchParticipant participant, IJavaSearchScope scope)
           
 void SearchPattern.acceptMatch(java.lang.String relativePath, java.lang.String containerPath, char separator, SearchPattern pattern, IndexQueryRequestor requestor, SearchParticipant participant, IJavaSearchScope scope, IProgressMonitor monitor)
           
static SearchPattern SearchPattern.createAndPattern(SearchPattern leftPattern, SearchPattern rightPattern)
          Deprecated. Unfortunately, this functionality is not fully supported yet (see "https://bugs.eclipse.org/bugs/show_bug.cgi?id=142044" for more details). This might be done in a further version...
static SearchPattern SearchPattern.createOrPattern(SearchPattern leftPattern, SearchPattern rightPattern)
          Returns a search pattern that combines the given two patterns into an "or" pattern.
abstract  void SearchParticipant.locateMatches(SearchDocument[] documents, SearchPattern pattern, IJavaSearchScope scope, SearchRequestor requestor, IProgressMonitor monitor)
          Locates the matches in the given documents using the given search pattern and search scope, and reports them to the givenn search requestor.
 boolean SearchPattern.matchesDecodedKey(SearchPattern decodedPattern)
          Returns whether this pattern matches the given pattern (representing a decoded index key).
 void SearchEngine.search(SearchPattern pattern, SearchParticipant[] participants, IJavaSearchScope scope, SearchRequestor requestor, IProgressMonitor monitor)
          Searches for matches of a given search pattern.
abstract  IPath[] SearchParticipant.selectIndexes(SearchPattern query, IJavaSearchScope scope)
          Returns the collection of index locations to consider when performing the given search query in the given scope.
 

Uses of SearchPattern in org.eclipse.jdt.internal.core.search
 

Fields in org.eclipse.jdt.internal.core.search declared as SearchPattern
protected  SearchPattern PatternSearchJob.pattern
           
 

Methods in org.eclipse.jdt.internal.core.search with parameters of type SearchPattern
 boolean PathCollector.acceptIndexMatch(java.lang.String documentPath, SearchPattern indexRecord, SearchParticipant participant, AccessRuleSet access)
           
abstract  boolean IndexQueryRequestor.acceptIndexMatch(java.lang.String documentPath, SearchPattern indexRecord, SearchParticipant participant, AccessRuleSet access)
           
static boolean IndexSelector.canSeeFocus(SearchPattern pattern, IPath projectOrJarPath)
          Returns whether elements of the given project or jar can see the given focus (an IJavaProject or a JarPackageFragmentRot) either because the focus is part of the project or the jar, or because it is accessible throught the project's classpath
 void JavaSearchParticipant.locateMatches(SearchDocument[] indexMatches, SearchPattern pattern, IJavaSearchScope scope, SearchRequestor requestor, IProgressMonitor monitor)
           
 void BasicSearchEngine.search(SearchPattern pattern, SearchParticipant[] participants, IJavaSearchScope scope, SearchRequestor requestor, IProgressMonitor monitor)
          Searches for matches of a given search pattern.
 void BasicSearchEngine.searchDeclarations(IJavaElement enclosingElement, SearchRequestor requestor, SearchPattern pattern, IProgressMonitor monitor)
           
 IPath[] JavaSearchParticipant.selectIndexes(SearchPattern pattern, IJavaSearchScope scope)
           
 IndexLocation[] JavaSearchParticipant.selectIndexURLs(SearchPattern pattern, IJavaSearchScope scope)
           
 

Constructors in org.eclipse.jdt.internal.core.search with parameters of type SearchPattern
IndexSelector(IJavaSearchScope searchScope, SearchPattern pattern)
           
PatternSearchJob(SearchPattern pattern, SearchParticipant participant, IJavaSearchScope scope, IndexQueryRequestor requestor)
           
SubTypeSearchJob(SearchPattern pattern, SearchParticipant participant, IJavaSearchScope scope, IndexQueryRequestor requestor)
           
 

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

Subclasses of SearchPattern in org.eclipse.jdt.internal.core.search.matching
 class AndPattern
           
 class ConstructorDeclarationPattern
           
 class ConstructorPattern
           
 class DeclarationOfAccessedFieldsPattern
           
 class DeclarationOfReferencedMethodsPattern
           
 class DeclarationOfReferencedTypesPattern
           
 class FieldPattern
           
 class IntersectingPattern
          Query the index multiple times and do an 'and' on the results.
 class JavaSearchPattern
           
 class LocalVariablePattern
           
 class MethodPattern
           
 class MultiTypeDeclarationPattern
           
 class OrPattern
           
 class PackageDeclarationPattern
           
 class PackageReferencePattern
           
 class QualifiedTypeDeclarationPattern
           
 class SecondaryTypeDeclarationPattern
           
 class SuperTypeReferencePattern
           
 class TypeDeclarationPattern
           
 class TypeParameterPattern
          Pattern to search type parameters.
 class TypeReferencePattern
           
 class VariablePattern
           
 

Fields in org.eclipse.jdt.internal.core.search.matching declared as SearchPattern
 SearchPattern MatchLocator.pattern
           
protected  SearchPattern[] AndPattern.patterns
           
protected  SearchPattern[] OrPattern.patterns
           
 

Methods in org.eclipse.jdt.internal.core.search.matching that return SearchPattern
 SearchPattern AndPattern.currentPattern()
           
 SearchPattern PackageReferencePattern.getBlankPattern()
           
 SearchPattern TypeDeclarationPattern.getBlankPattern()
           
 SearchPattern ConstructorDeclarationPattern.getBlankPattern()
           
 SearchPattern JavaSearchPattern.getBlankPattern()
           
 SearchPattern SecondaryTypeDeclarationPattern.getBlankPattern()
           
 SearchPattern ConstructorPattern.getBlankPattern()
           
 SearchPattern MultiTypeDeclarationPattern.getBlankPattern()
           
 SearchPattern QualifiedTypeDeclarationPattern.getBlankPattern()
           
 SearchPattern FieldPattern.getBlankPattern()
           
 SearchPattern MethodPattern.getBlankPattern()
           
 SearchPattern TypeReferencePattern.getBlankPattern()
           
 SearchPattern SuperTypeReferencePattern.getBlankPattern()
           
 SearchPattern OrPattern.getBlankPattern()
           
 

Methods in org.eclipse.jdt.internal.core.search.matching with parameters of type SearchPattern
static SearchDocument[] MatchLocator.addWorkingCopies(SearchPattern pattern, SearchDocument[] indexMatches, ICompilationUnit[] copies, SearchParticipant participant)
           
static void MatchLocator.findIndexMatches(SearchPattern pattern, Index index, IndexQueryRequestor requestor, SearchParticipant participant, IJavaSearchScope scope, IProgressMonitor monitor)
          Query a given index for matching entries.
protected  void MatchLocator.locatePackageDeclarations(SearchPattern searchPattern, SearchParticipant participant, IJavaProject[] projects)
          Locates the package declarations corresponding to the search pattern.
 boolean PackageReferencePattern.matchesDecodedKey(SearchPattern decodedPattern)
           
 boolean TypeDeclarationPattern.matchesDecodedKey(SearchPattern decodedPattern)
           
 boolean ConstructorDeclarationPattern.matchesDecodedKey(SearchPattern decodedPattern)
           
 boolean ConstructorPattern.matchesDecodedKey(SearchPattern decodedPattern)
           
 boolean MultiTypeDeclarationPattern.matchesDecodedKey(SearchPattern decodedPattern)
           
 boolean QualifiedTypeDeclarationPattern.matchesDecodedKey(SearchPattern decodedPattern)
           
 boolean FieldPattern.matchesDecodedKey(SearchPattern decodedPattern)
           
 boolean MethodPattern.matchesDecodedKey(SearchPattern decodedPattern)
           
 boolean TypeReferencePattern.matchesDecodedKey(SearchPattern decodedPattern)
           
 boolean SuperTypeReferencePattern.matchesDecodedKey(SearchPattern decodedPattern)
           
static PatternLocator PatternLocator.patternLocator(SearchPattern pattern)
           
static IJavaElement MatchLocator.projectOrJarFocus(SearchPattern pattern)
           
static void MatchLocator.setFocus(SearchPattern pattern, IJavaElement focus)
           
 

Constructors in org.eclipse.jdt.internal.core.search.matching with parameters of type SearchPattern
AndPattern(SearchPattern leftPattern, SearchPattern rightPattern)
           
MatchLocator(SearchPattern pattern, SearchRequestor requestor, IJavaSearchScope scope, IProgressMonitor progressMonitor)
           
OrPattern(SearchPattern leftPattern, SearchPattern rightPattern)
           
PatternLocator(SearchPattern pattern)
           
SuperTypeNamesCollector(SearchPattern pattern, char[] typeSimpleName, char[] typeQualification, MatchLocator locator, IType type, IProgressMonitor progressMonitor)