Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3aadf457283213b9e1e183a7ae2b3109787e89e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
   <meta name="Author" content="IBM">
   <meta name="GENERATOR" content="Mozilla/4.75 [en] (WinNT; U) [Netscape]">
   <title>Package-level Javadoc</title>
</head>
<body>
Classes and interface required to contribute search dialog pages and search result view pages.

<h2>
Package Specification</h2>

<p>The search plugin implements the <i>search dialog</i> and the <i>search result view</i>. Client can contribute search dialog pages (extension point 'org.eclipse.search.searchPages')
and search result view pages (extension point 'org.eclipse.search.searchResultViewPages') to integrate their searches to the shared search user interface.

<h3>
Search dialog pages</h3>

<p>Search dialog pages contributing to the 'searchPages' extension point must implement <tt>ISearchPage</tt>. A search page
has access to its <tt>ISearchPageContainer</tt> to modify search
dialog properties.
<p>A search dialog page can additionally implement <tt>IReplacePage</tt> to allow the 'Replace' button to show up.

<h3>
Search result view, since 3.0</h3>
<p>The search view that shows the search results has been redesigned for 3.0. It is recommended
to use and to switch to the new API:
<p>On 'OK', an implementation of a search dialog page creates a <i>search query</i>, represented by an instances of type <tt>ISearchQuery</tt>. The query
can be run using API on <tt>NewSearchUI</tt> and will create a <code>ISearchResult</code> as result.
<tt>ISearchResultListener</tt> can be added to search results and report changes as <tt>SearchResultEvent</tt>.

<p>Clients have to contribute a search result page (<tt>ISearchResultPage</tt>) that can
visualize the matches contained in the result set.
<p>The result page has access to the view using <tt>ISearchResultViewPart</tt>

<h3>
Search result view, before 3.0</h3>

<p>For compatibility to searches written prior to 3.0, the following APIs still exist and are functional. The old search result view is called 'classic search view' in the UI.
<p>Before 3.0, the search result view was fully implemented by the search plugin. All search results had to be marked with <i>search markers</i> (<tt>org.eclipse.core.resources.IMarker</tt>, registered under 'org.eclipse.search.searchmarker')

<p>The search dialog page (type <tt>ISearchResultView</tt>) could access the single search result view using <tt>SearchUI.getSearchResultView()</tt>. It showed all matches as elements of type <tt>ISearchResultViewEntry</tt>.


<p><tt>IGroupByKeyComputer</tt>, <tt>IActionGroupFactory</tt>, <tt>IContextMenuContributor</tt> and extension point 
'org.eclipse.search.searchResultSorters' were used to configure the search result view.


</body>
</html>

Back to the top