Uses of Interface
org.eclipse.wst.jsdt.core.search.IJavaScriptSearchScope

Packages that use IJavaScriptSearchScope
org.eclipse.wst.jsdt.core.search   
org.eclipse.wst.jsdt.ui   
org.eclipse.wst.jsdt.ui.search   
org.eclipse.wst.jsdt.web.core.javascript.search   
 

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

Methods in org.eclipse.wst.jsdt.core.search that return IJavaScriptSearchScope
static IJavaScriptSearchScope SearchEngine.createHierarchyScope(IType type)
          Returns a JavaScript search scope limited to the hierarchy of the given type.
static IJavaScriptSearchScope SearchEngine.createHierarchyScope(IType type, WorkingCopyOwner owner)
          Returns a JavaScript search scope limited to the hierarchy of the given type.
static IJavaScriptSearchScope SearchEngine.createJavaSearchScope(IJavaScriptElement[] elements)
          Returns a JavaScript search scope limited to the given JavaScript elements.
static IJavaScriptSearchScope SearchEngine.createJavaSearchScope(IJavaScriptElement[] elements, boolean includeReferencedProjects)
          Returns a JavaScript search scope limited to the given JavaScript elements.
static IJavaScriptSearchScope SearchEngine.createJavaSearchScope(IJavaScriptElement[] elements, int includeMask)
          Returns a JavaScript search scope limited to the given JavaScript elements.
static IJavaScriptSearchScope SearchEngine.createWorkspaceScope()
          Returns a JavaScript search scope with the workspace as the only limit.
 

Methods in org.eclipse.wst.jsdt.core.search with parameters of type IJavaScriptSearchScope
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 SearchEngine.search(SearchPattern pattern, SearchParticipant[] participants, IJavaScriptSearchScope scope, SearchRequestor requestor, IProgressMonitor monitor)
          Searches for matches of a given search pattern.
 void SearchEngine.searchAllTypeNames(char[][] qualifications, char[][] typeNames, IJavaScriptSearchScope scope, TypeNameMatchRequestor nameMatchRequestor, int waitingPolicy, IProgressMonitor progressMonitor)
          Searches for all top-level types and member types in the given scope matching any of the given qualifications and type names in a case sensitive way.
 void SearchEngine.searchAllTypeNames(char[][] qualifications, char[][] typeNames, IJavaScriptSearchScope scope, TypeNameRequestor nameRequestor, int waitingPolicy, IProgressMonitor progressMonitor)
          Searches for all top-level types and member types in the given scope matching any of the given qualifications and type names in a case sensitive way.
 void SearchEngine.searchAllTypeNames(char[] packageName, int packageMatchRule, char[] typeName, int typeMatchRule, int searchFor, IJavaScriptSearchScope scope, TypeNameMatchRequestor nameMatchRequestor, int waitingPolicy, IProgressMonitor progressMonitor)
          Searches for all top-level types and member types in the given scope.
 void SearchEngine.searchAllTypeNames(char[] packageName, int packageMatchRule, char[] typeName, int typeMatchRule, int searchFor, IJavaScriptSearchScope scope, TypeNameRequestor nameRequestor, int waitingPolicy, IProgressMonitor progressMonitor)
          Searches for all top-level types and member types in the given scope.
abstract  IPath[] SearchParticipant.selectIndexes(SearchPattern query, IJavaScriptSearchScope scope)
          Returns the collection of index locations to consider when performing the given search query in the given scope.
 

Uses of IJavaScriptSearchScope in org.eclipse.wst.jsdt.ui
 

Methods in org.eclipse.wst.jsdt.ui with parameters of type IJavaScriptSearchScope
static SelectionDialog JavaScriptUI.createPackageDialog(Shell parent, IRunnableContext context, IJavaScriptSearchScope scope, boolean multipleSelection, boolean removeDuplicates, java.lang.String filter)
          Creates a selection dialog that lists all packages of the given JavaScript search scope.
static SelectionDialog JavaScriptUI.createTypeDialog(Shell parent, IRunnableContext context, IJavaScriptSearchScope scope, int style, boolean multipleSelection, java.lang.String filter)
          Creates a selection dialog that lists all types in the given scope.
static SelectionDialog JavaScriptUI.createTypeDialog(Shell parent, IRunnableContext context, IJavaScriptSearchScope scope, int style, boolean multipleSelection, java.lang.String filter, org.eclipse.wst.jsdt.ui.dialogs.TypeSelectionExtension extension)
          Creates a selection dialog that lists all types in the given scope.
 

Uses of IJavaScriptSearchScope in org.eclipse.wst.jsdt.ui.search
 

Methods in org.eclipse.wst.jsdt.ui.search that return IJavaScriptSearchScope
 IJavaScriptSearchScope QuerySpecification.getScope()
          Returns the search scope to be used in the query.
 

Constructors in org.eclipse.wst.jsdt.ui.search with parameters of type IJavaScriptSearchScope
ElementQuerySpecification(IJavaScriptElement javaElement, int limitTo, IJavaScriptSearchScope scope, java.lang.String scopeDescription)
          A constructor.
PatternQuerySpecification(java.lang.String pattern, int searchFor, boolean caseSensitive, int limitTo, IJavaScriptSearchScope scope, java.lang.String scopeDescription)
           
 

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

Classes in org.eclipse.wst.jsdt.web.core.javascript.search that implement IJavaScriptSearchScope
 class JsSearchScope
          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 with parameters of type IJavaScriptSearchScope
 IPath[] JsPathIndexer.getVisibleJspPaths(SearchPattern pattern, IJavaScriptSearchScope scope)
           
 void JsSearchParticipant.locateMatches(SearchDocument[] indexMatches, SearchPattern pattern, IJavaScriptSearchScope scope, SearchRequestor requestor, IProgressMonitor monitor)
           
 void JsSearchSupport.search(IJavaScriptElement element, IJavaScriptSearchScope scope, SearchRequestor requestor)
          Search for an IJavaScriptElement, constrained by the given parameters.
 void JsSearchSupport.search(java.lang.String searchText, IJavaScriptSearchScope scope, int searchFor, int limitTo, int matchMode, boolean isCaseSensitive, SearchRequestor requestor)
          Perform a java search w/ the given parameters.
 void JsSearchSupport.searchRunnable(IJavaScriptElement element, IJavaScriptSearchScope scope, SearchRequestor requestor)
          Search for an IJavaScriptElement, constrained by the given parameters.
 IPath[] JsSearchParticipant.selectIndexes(SearchPattern pattern, IJavaScriptSearchScope scope)