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

Packages that use SearchParticipant
org.eclipse.jdt.core.search   
org.eclipse.jdt.internal.core.search   
org.eclipse.jdt.internal.core.search.indexing   
org.eclipse.jdt.internal.core.search.matching   
 

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

Methods in org.eclipse.jdt.core.search that return SearchParticipant
static SearchParticipant SearchEngine.getDefaultSearchParticipant()
          Returns a new default Java search participant.
 SearchParticipant SearchMatch.getParticipant()
          Returns the search participant which issued this search match.
 SearchParticipant SearchDocument.getParticipant()
          Returns the participant that created this document.
 

Methods in org.eclipse.jdt.core.search with parameters of type SearchParticipant
 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)
           
 void SearchRequestor.enterParticipant(SearchParticipant participant)
          Intermediate notification sent when the given participant starts to contribute.
 void SearchRequestor.exitParticipant(SearchParticipant participant)
          Intermediate notification sent when the given participant is finished contributing.
 void SearchPattern.findIndexMatches(Index index, IndexQueryRequestor requestor, SearchParticipant participant, IJavaSearchScope scope, IProgressMonitor monitor)
          Query a given index for matching entries.
 void SearchEngine.search(SearchPattern pattern, SearchParticipant[] participants, IJavaSearchScope scope, SearchRequestor requestor, IProgressMonitor monitor)
          Searches for matches of a given search pattern.
 void SearchMatch.setParticipant(SearchParticipant participant)
          Sets the participant of this match.
 

Constructors in org.eclipse.jdt.core.search with parameters of type SearchParticipant
FieldDeclarationMatch(IJavaElement element, int accuracy, int offset, int length, SearchParticipant participant, IResource resource)
          Creates a new field declaration match.
FieldReferenceMatch(IJavaElement enclosingElement, int accuracy, int offset, int length, boolean isReadAccess, boolean isWriteAccess, boolean insideDocComment, SearchParticipant participant, IResource resource)
          Creates a new field reference match.
LocalVariableDeclarationMatch(IJavaElement element, int accuracy, int offset, int length, SearchParticipant participant, IResource resource)
          Creates a new local variable declaration match.
LocalVariableReferenceMatch(IJavaElement enclosingElement, int accuracy, int offset, int length, boolean isReadAccess, boolean isWriteAccess, boolean insideDocComment, SearchParticipant participant, IResource resource)
          Creates a new local variable reference match.
MethodDeclarationMatch(IJavaElement element, int accuracy, int offset, int length, SearchParticipant participant, IResource resource)
          Creates a new method declaration match.
MethodReferenceMatch(IJavaElement enclosingElement, int accuracy, int offset, int length, boolean constructor, boolean synthetic, boolean superInvocation, boolean insideDocComment, SearchParticipant participant, IResource resource)
          Creates a new method reference match.
MethodReferenceMatch(IJavaElement enclosingElement, int accuracy, int offset, int length, boolean constructor, boolean synthetic, boolean insideDocComment, SearchParticipant participant, IResource resource)
          Creates a new method reference match.
MethodReferenceMatch(IJavaElement enclosingElement, int accuracy, int offset, int length, boolean insideDocComment, SearchParticipant participant, IResource resource)
          Creates a new method reference match.
PackageDeclarationMatch(IJavaElement element, int accuracy, int offset, int length, SearchParticipant participant, IResource resource)
          Creates a new package declaration match.
PackageReferenceMatch(IJavaElement enclosingElement, int accuracy, int offset, int length, boolean insideDocComment, SearchParticipant participant, IResource resource)
          Creates a new package reference match.
ReferenceMatch(IJavaElement enclosingElement, int accuracy, int offset, int length, boolean insideDocComment, SearchParticipant participant, IResource resource)
          Creates a new reference match.
SearchDocument(java.lang.String documentPath, SearchParticipant participant)
          Creates a new search document.
SearchMatch(IJavaElement element, int accuracy, int offset, int length, SearchParticipant participant, IResource resource)
          Creates a new search match.
TypeDeclarationMatch(IJavaElement element, int accuracy, int offset, int length, SearchParticipant participant, IResource resource)
          Creates a new type declaration match.
TypeParameterDeclarationMatch(IJavaElement element, int accuracy, int offset, int length, SearchParticipant participant, IResource resource)
          Creates a new type parameter match.
TypeParameterReferenceMatch(IJavaElement enclosingElement, int accuracy, int offset, int length, boolean insideDocComment, SearchParticipant participant, IResource resource)
          Creates a new field reference match.
TypeReferenceMatch(IJavaElement enclosingElement, int accuracy, int offset, int length, boolean insideDocComment, SearchParticipant participant, IResource resource)
          Creates a new type reference match.
 

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

Subclasses of SearchParticipant in org.eclipse.jdt.internal.core.search
 class JavaSearchParticipant
          A search participant describes a particular extension to a generic search mechanism, allowing thus to perform combined search actions which will involve all required participants A search scope defines which participants are involved.
 

Fields in org.eclipse.jdt.internal.core.search declared as SearchParticipant
protected  SearchParticipant PatternSearchJob.participant
           
 

Methods in org.eclipse.jdt.internal.core.search that return SearchParticipant
static SearchParticipant BasicSearchEngine.getDefaultSearchParticipant()
          Returns a new default Java search participant.
 

Methods in org.eclipse.jdt.internal.core.search with parameters of type SearchParticipant
 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)
           
 void BasicSearchEngine.search(SearchPattern pattern, SearchParticipant[] participants, IJavaSearchScope scope, SearchRequestor requestor, IProgressMonitor monitor)
          Searches for matches of a given search pattern.
 

Constructors in org.eclipse.jdt.internal.core.search with parameters of type SearchParticipant
JavaSearchDocument(java.lang.String documentPath, SearchParticipant participant)
           
JavaSearchDocument(java.util.zip.ZipEntry zipEntry, IPath zipFilePath, byte[] contents, SearchParticipant participant)
           
PatternSearchJob(SearchPattern pattern, SearchParticipant participant, IJavaSearchScope scope, IndexQueryRequestor requestor)
           
SubTypeSearchJob(SearchPattern pattern, SearchParticipant participant, IJavaSearchScope scope, IndexQueryRequestor requestor)
           
 

Uses of SearchParticipant in org.eclipse.jdt.internal.core.search.indexing
 

Methods in org.eclipse.jdt.internal.core.search.indexing with parameters of type SearchParticipant
 void IndexManager.indexDocument(SearchDocument searchDocument, SearchParticipant searchParticipant, Index index, IPath indexLocation)
           
 void IndexManager.scheduleDocumentIndexing(SearchDocument searchDocument, IPath container, IndexLocation indexLocation, SearchParticipant searchParticipant)
           
 

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

Methods in org.eclipse.jdt.internal.core.search.matching that return SearchParticipant
 SearchParticipant MatchLocator.getParticipant()
           
 

Methods in org.eclipse.jdt.internal.core.search.matching with parameters of type SearchParticipant
static SearchDocument[] MatchLocator.addWorkingCopies(SearchPattern pattern, SearchDocument[] indexMatches, ICompilationUnit[] copies, SearchParticipant participant)
           
 void LocalVariablePattern.findIndexMatches(Index index, IndexQueryRequestor requestor, SearchParticipant participant, IJavaSearchScope scope, IProgressMonitor progressMonitor)
           
 void TypeParameterPattern.findIndexMatches(Index index, IndexQueryRequestor requestor, SearchParticipant participant, IJavaSearchScope scope, IProgressMonitor progressMonitor)
           
 void IntersectingPattern.findIndexMatches(Index index, IndexQueryRequestor requestor, SearchParticipant participant, IJavaSearchScope scope, IProgressMonitor progressMonitor)
           
 void OrPattern.findIndexMatches(Index index, IndexQueryRequestor requestor, SearchParticipant participant, IJavaSearchScope scope, IProgressMonitor progressMonitor)
           
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(SearchParticipant participant, IJavaProject[] projects)
          Locates the package declarations corresponding to this locator's pattern.
protected  void MatchLocator.locatePackageDeclarations(SearchPattern searchPattern, SearchParticipant participant, IJavaProject[] projects)
          Locates the package declarations corresponding to the search pattern.
 SearchMatch MatchLocator.newDeclarationMatch(IJavaElement element, Binding binding, int accuracy, int offset, int length, SearchParticipant participant, IResource resource)