Uses of Interface
org.eclipse.search.ui.ISearchQuery
-
Packages that use ISearchQuery Package Description org.eclipse.search.ui Classes and interface required to contribute search dialog pages and search result view pages.org.eclipse.search.ui.text Provides the base classes to implement a search result view part for searches with textual matches. -
-
Uses of ISearchQuery in org.eclipse.search.ui
Methods in org.eclipse.search.ui that return ISearchQuery Modifier and Type Method Description static ISearchQuery[]NewSearchUI. getQueries()Returns all search queries know to the search UI (i.e. registered viarunQuery()orrunQueryInForeground()).ISearchQueryISearchResult. getQuery()Returns the query that produced this search result.Methods in org.eclipse.search.ui with parameters of type ISearchQuery Modifier and Type Method Description static voidNewSearchUI. cancelQuery(ISearchQuery query)Sends a 'cancel' command to the given query running in background.static booleanNewSearchUI. isQueryRunning(ISearchQuery query)Returns whether the given query is currently running.voidIQueryListener. queryAdded(ISearchQuery query)Called when an query has been added to the system.voidIQueryListener. queryFinished(ISearchQuery query)Called after anISearchQueryhas finished.voidIQueryListener. queryRemoved(ISearchQuery query)Called when a query has been removed.voidIQueryListener. queryStarting(ISearchQuery query)Called before anISearchQueryis starting.static voidNewSearchUI. removeQuery(ISearchQuery query)Removes the given search query.static voidNewSearchUI. runQuery(ISearchQuery query)Deprecated.deprecated in 3.1.static voidNewSearchUI. runQueryInBackground(ISearchQuery query)Runs the given search query.static voidNewSearchUI. runQueryInBackground(ISearchQuery query, ISearchResultViewPart view)Runs the given search query.static IStatusNewSearchUI. runQueryInForeground(IRunnableContext context, ISearchQuery query)Runs the given search query.static IStatusNewSearchUI. runQueryInForeground(IRunnableContext context, ISearchQuery query, ISearchResultViewPart view)Runs the given search query. -
Uses of ISearchQuery in org.eclipse.search.ui.text
Methods in org.eclipse.search.ui.text that return ISearchQuery Modifier and Type Method Description abstract ISearchQueryTextSearchQueryProvider. createQuery(String selectedText)Create a query to search for the selected text in the workspace.abstract ISearchQueryTextSearchQueryProvider. createQuery(String selectedText, IResource[] resources)Create a query to search for the selected text in the given resources.abstract ISearchQueryTextSearchQueryProvider. createQuery(String selectedText, IWorkingSet[] ws)Create a query to search for the selected text in the given working sets.abstract ISearchQueryTextSearchQueryProvider. createQuery(TextSearchQueryProvider.TextSearchInput textSearchInput)Create a query for the input with the given information.
-