tags:

views:

53

answers:

1

hi,

where can i find the complete source code of search button in eclipse

+2  A: 

Try Alt+Shift+F2 (see Plugin Spy) and click on the search button.

You will get relevant classes and packages, allowing you to find SearchUI or NewSearchUI.
Note the org.eclipse.search2.internal.ui contains also relevant classes.

The active contribution item identifier:

org.eclipse.search.OpenSearchDialogPage

The active contribution location URI:

toolbar:org.eclipse.search.searchActionSet?after=org.eclipse.search.OpenSearchDialogPage

The active action set identifier:

org.eclipse.search.searchActionSet

The active contribution item class:

OpenSearchDialogPageAction

The contributing plug-in: org.eclipse.ui.workbench (3.5.0.I20090603-2000)

VonC