Interface ISearchResultView

All Superinterfaces:
IAdaptable, IPersistable, IViewPart, IWorkbenchPart

@Deprecated(forRemoval=true) public interface ISearchResultView extends IViewPart
Deprecated, for removal: This API element is subject to removal in a future version.
Part of the old ('classic') search result view. Since 3.0 clients can create their own search result view pages. To access the parent view, ISearchResultViewPart is used instead. This class will be removed after 2023-09 release. See https://bugs.eclipse.org/bugs/show_bug.cgi?id=487303 for more information.
Provides client access to the search result view. Each element in the view is a ISearchResultViewEntry, which groups markers based on the groupByKey provided by the client each time when adding a match. If every match should show up in the search result view then the match itself can be used as key.

The search result view has id "org.eclipse.search.SearchResultView".

This interface is not intended to be implemented by clients.

Restriction:
This interface is not intended to be implemented by clients.
Restriction:
This interface is not intended to be extended by clients.
Restriction:
Restriction:
This class is not intended to be instantiated by clients.
  • Method Details

    • searchStarted

      void searchStarted(IActionGroupFactory groupFactory, String singularLabel, String pluralLabelPattern, ImageDescriptor imageDescriptor, String pageId, ILabelProvider labelProvider, IAction gotoAction, IGroupByKeyComputer groupByKeyComputer, IRunnableWithProgress operation)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Informs the view that a search has started. Provides all necessary information to create an entry in the search result view. If every match should show up in the search result view then the match itself can be used as key.
      Parameters:
      groupFactory - the action group factory or null if no factory is provided.
      singularLabel - the label to be used for this search occurrence if there is one match or null if the pluralLabelPattern should be used
      pluralLabelPattern - the label pattern to be used for this search occurrence if there are more than one matches or none. This string may contain {0} which will be replace by the match count
      imageDescriptor - the image descriptor to be used for this search occurrence, or null if this search should not have an image
      pageId - the id of the search page which started the search
      labelProvider - the label provider used by this search result view or null if the default provider should be used. The default label provider shows the resource name and the corresponding image.
      gotoAction - the action used by the view to go to a marker
      groupByKeyComputer - the computer used by the view to compute the key for a marker
      operation - the runnable used by the view to repeat the search
      Since:
      2.0
      See Also:
    • getSelection

      ISelection getSelection()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns the current selection of the search result view
      Returns:
      the current selection of the search result view
      See Also:
    • searchStarted

      @Deprecated void searchStarted(String pageId, String label, ImageDescriptor imageDescriptor, IContextMenuContributor contributor, ILabelProvider labelProvider, IAction gotoAction, IGroupByKeyComputer groupByKeyComputer, IRunnableWithProgress operation)
      Deprecated.
      As of build > 20011107, replaced by the new version with additional parameter
      Informs the view that a search has started. Provides all necessary information to create an entry in the search result view. If every match should show up in the search result view then the match itself can be used as key.
      Parameters:
      pageId - the id of the search page which started the search
      label - the label to be used for this search occurrence
      imageDescriptor - the image descriptor to be used for this search occurrence, or null if this search should not have an image
      contributor - the context menu contributor or null if no context menu is contributed
      labelProvider - the label provider used by this search result view or null if the default provider should be used. The default label provider shows the resource name and the corresponding image.
      gotoAction - the action used by the view to go to a marker
      groupByKeyComputer - the computer used by the view to compute the key for a marker
      operation - the runnable used by the view to repeat the search
    • searchStarted

      @Deprecated void searchStarted(String pageId, String singularLabel, String pluralLabelPattern, ImageDescriptor imageDescriptor, IContextMenuContributor contributor, ILabelProvider labelProvider, IAction gotoAction, IGroupByKeyComputer groupByKeyComputer, IRunnableWithProgress operation)
      Deprecated.
      As of build > 20020514, replaced by the new version which provides an action group factory
      Informs the view that a search has started. Provides all necessary information to create an entry in the search result view. If every match should show up in the search result view then the match itself can be used as key.
      Parameters:
      pageId - the id of the search page which started the search
      singularLabel - the label to be used for this search occurrence if there is one match or null if the pluralLabelPattern should be used
      pluralLabelPattern - the label pattern to be used for this search occurrence if there are more than one matches or none. This string may contain {0} which will be replace by the match count
      imageDescriptor - the image descriptor to be used for this search occurrence, or null if this search should not have an image
      contributor - the context menu contributor or null if no context menu is contributed
      labelProvider - the label provider used by this search result view or null if the default provider should be used. The default label provider shows the resource name and the corresponding image.
      gotoAction - the action used by the view to go to a marker
      groupByKeyComputer - the computer used by the view to compute the key for a marker
      operation - the runnable used by the view to repeat the search
      Since:
      2.0
    • searchFinished

      void searchFinished()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Informs the view that the search has finished. This method must also be called in case of the search fails or has been canceled.
    • addMatch

      void addMatch(String description, Object groupByKey, IResource resource, IMarker marker)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Informs the view that a match has been found. Provides all necessary information to create a search result entry in this view.

      Note: It is the clients responsibility to create the marker for this match.

      Parameters:
      description - the text description of the match
      groupByKey - the Object by which this match is grouped
      marker - the marker for this match
      resource - the marker's resource passed for optimization
    • getLabelProvider

      ILabelProvider getLabelProvider()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns the label provider of a search result view.
      Returns:
      the label provider of a search result view or null
      Since:
      2.0