Package org.eclipse.ui.views
Interface IViewCategory
-
public interface IViewCategoryRepresents a categorization of views.This interface is not intended to be implemented by clients.
- Since:
- 3.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetId()Return the id of this category.StringgetLabel()Return the human readable name of this view category.IPathgetPath()Return this categories path.IViewDescriptor[]getViews()Return the views contained within this category.
-
-
-
Method Detail
-
getViews
IViewDescriptor[] getViews()
Return the views contained within this category. Nevernull, but may be empty.- Returns:
- the views contained within this category
-
getId
String getId()
Return the id of this category. Nevernull.- Returns:
- the id
-
getLabel
String getLabel()
Return the human readable name of this view category. Nevernull.- Returns:
- the label
-
getPath
IPath getPath()
Return this categories path. The segments of this path will correspond to category ids.- Returns:
- the path
-
-