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

Packages that use SearchDocument
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 SearchDocument in org.eclipse.jdt.core.search
 

Methods in org.eclipse.jdt.core.search that return SearchDocument
abstract  SearchDocument SearchParticipant.getDocument(java.lang.String documentPath)
          Returns a search document for the given path.
 

Methods in org.eclipse.jdt.core.search with parameters of type SearchDocument
abstract  void SearchParticipant.indexDocument(SearchDocument document, IPath indexLocation)
          Indexes the given document in the given index.
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.
 void SearchParticipant.scheduleDocumentIndexing(SearchDocument document, IPath indexPath)
          Schedules the indexing of the given document.
 

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

Subclasses of SearchDocument in org.eclipse.jdt.internal.core.search
 class JavaSearchDocument
           
 

Methods in org.eclipse.jdt.internal.core.search that return SearchDocument
 SearchDocument JavaSearchParticipant.getDocument(java.lang.String documentPath)
           
 

Methods in org.eclipse.jdt.internal.core.search with parameters of type SearchDocument
 void JavaSearchParticipant.indexDocument(SearchDocument document, IPath indexPath)
           
 void JavaSearchParticipant.locateMatches(SearchDocument[] indexMatches, SearchPattern pattern, IJavaSearchScope scope, SearchRequestor requestor, IProgressMonitor monitor)
           
 

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

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

Constructors in org.eclipse.jdt.internal.core.search.indexing with parameters of type SearchDocument
AbstractIndexer(SearchDocument document)
           
BinaryIndexer(SearchDocument document)
           
SourceIndexer(SearchDocument document)
           
 

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

Subclasses of SearchDocument in org.eclipse.jdt.internal.core.search.matching
static class MatchLocator.WorkingCopyDocument
           
 

Fields in org.eclipse.jdt.internal.core.search.matching declared as SearchDocument
 SearchDocument PossibleMatch.document
           
 

Methods in org.eclipse.jdt.internal.core.search.matching that return SearchDocument
static SearchDocument[] MatchLocator.addWorkingCopies(SearchPattern pattern, SearchDocument[] indexMatches, ICompilationUnit[] copies, SearchParticipant participant)
           
 

Methods in org.eclipse.jdt.internal.core.search.matching with parameters of type SearchDocument
static SearchDocument[] MatchLocator.addWorkingCopies(SearchPattern pattern, SearchDocument[] indexMatches, ICompilationUnit[] copies, SearchParticipant participant)
           
 void MatchLocator.locateMatches(SearchDocument[] searchDocuments)
          Locate the matches in the given files and report them using the search requestor.
 

Constructors in org.eclipse.jdt.internal.core.search.matching with parameters of type SearchDocument
PossibleMatch(MatchLocator locator, IResource resource, Openable openable, SearchDocument document, boolean mustResolve)