Package org.eclipse.search.ui
Interface IGroupByKeyComputer
-
@Deprecated public interface IGroupByKeyComputer
Deprecated.Part of the old ('classic') search result view. Since 3.0 clients can create their own search result view pages (seeISearchResultPage
), leaving it up to the page how to group search results.Computes the key by which the markers in the search result view are grouped.Clients may implement this interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Object
computeGroupByKey(IMarker marker)
Deprecated.Computes and returns key by which the given marker is grouped.
-
-
-
Method Detail
-
computeGroupByKey
Object computeGroupByKey(IMarker marker)
Deprecated.Computes and returns key by which the given marker is grouped.- Parameters:
marker
- the marker for which the key must be computed- Returns:
- an object that will be used as the key for that marker,
null
if the marker seems to be invalid
-
-