Uses of Class
org.eclipse.wst.jsdt.core.search.SearchDocument

Packages that use SearchDocument
org.eclipse.wst.jsdt.core.search   
org.eclipse.wst.jsdt.internal.core.search   
org.eclipse.wst.jsdt.web.core.javascript.search   
 

Uses of SearchDocument in org.eclipse.wst.jsdt.core.search
 

Methods in org.eclipse.wst.jsdt.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.wst.jsdt.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, IJavaScriptSearchScope 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 indexLocation)
          Schedules the indexing of the given document.
 

Uses of SearchDocument in org.eclipse.wst.jsdt.internal.core.search
 

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

Uses of SearchDocument in org.eclipse.wst.jsdt.web.core.javascript.search
 

Subclasses of SearchDocument in org.eclipse.wst.jsdt.web.core.javascript.search
 class JSDTSearchDocumentDelegate
          Provisional API: This class/interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 class NullSearchDocument
          Provisional API: This class/interface is part of an interim API that is still under development and expected to change significantly before reaching stability.
 

Methods in org.eclipse.wst.jsdt.web.core.javascript.search that return SearchDocument
 SearchDocument JsSearchSupport.addJspFile(IFile file)
          schedules a search document representing this JSP file for indexing (by the java indexer)
 SearchDocument JsSearchParticipant.getDocument(java.lang.String documentPath)
          Important to never return null here or else Java search participation will break.
 SearchDocument JsSearchSupport.getSearchDocument(java.lang.String searchDocPath)
          Centralized place to access JSPSearchDocuments (used by JSPSearchParticipant and JSPSearchRequestor)
 

Methods in org.eclipse.wst.jsdt.web.core.javascript.search with parameters of type SearchDocument
 void JsSearchParticipant.indexDocument(SearchDocument document, IPath indexPath)
           
 void JsSearchParticipant.locateMatches(SearchDocument[] indexMatches, SearchPattern pattern, IJavaScriptSearchScope scope, SearchRequestor requestor, IProgressMonitor monitor)