Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/views/IViewCategory.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/views/IViewCategory.java53
1 files changed, 27 insertions, 26 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/views/IViewCategory.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/views/IViewCategory.java
index 58c1c0981c7..3487f1bcb8b 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/views/IViewCategory.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/views/IViewCategory.java
@@ -26,33 +26,34 @@ import org.eclipse.core.runtime.IPath;
*/
public interface IViewCategory {
- /**
- * Return the views contained within this category. Never <code>null</code>,
- * but may be empty.
- *
- * @return the views contained within this category
- */
- IViewDescriptor[] getViews();
+ /**
+ * Return the views contained within this category. Never <code>null</code>, but
+ * may be empty.
+ *
+ * @return the views contained within this category
+ */
+ IViewDescriptor[] getViews();
- /**
- * Return the id of this category. Never <code>null</code>.
- *
- * @return the id
- */
- String getId();
+ /**
+ * Return the id of this category. Never <code>null</code>.
+ *
+ * @return the id
+ */
+ String getId();
- /**
- * Return the human readable name of this view category. Never <code>null</code>.
- *
- * @return the label
- */
- String getLabel();
+ /**
+ * Return the human readable name of this view category. Never
+ * <code>null</code>.
+ *
+ * @return the label
+ */
+ String getLabel();
- /**
- * Return this categories path. The segments of this path will correspond to
- * category ids.
- *
- * @return the path
- */
- IPath getPath();
+ /**
+ * Return this categories path. The segments of this path will correspond to
+ * category ids.
+ *
+ * @return the path
+ */
+ IPath getPath();
}

Back to the top