Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/IWorkbenchWidget.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/IWorkbenchWidget.java28
1 files changed, 13 insertions, 15 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/IWorkbenchWidget.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/IWorkbenchWidget.java
index 16985715bfd..57d28658e6d 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/IWorkbenchWidget.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/IWorkbenchWidget.java
@@ -17,11 +17,9 @@ package org.eclipse.ui.menus;
import org.eclipse.jface.menus.IWidget;
import org.eclipse.ui.IWorkbenchWindow;
-
/**
- * Interface used for IWidget's contributed to the
- * Workbench. Allows the contributed widget to be
- * informed as to which WorkbenchWindow it's being
+ * Interface used for IWidget's contributed to the Workbench. Allows the
+ * contributed widget to be informed as to which WorkbenchWindow it's being
* hosted in.
*
* @see org.eclipse.jface.menus.IWidget
@@ -29,15 +27,15 @@ import org.eclipse.ui.IWorkbenchWindow;
* @since 3.2
*/
public interface IWorkbenchWidget extends IWidget {
- /**
- * Initializes this widget contribution by supplying the
- * <code>IWorkbenchWindow</code> that it's being hosted in.
- * <p>
- * This method is called after the no argument constructor and
- * before other methods are called.
- * </p>
- *
- * @param workbenchWindow the current workbench
- */
- void init(IWorkbenchWindow workbenchWindow);
+ /**
+ * Initializes this widget contribution by supplying the
+ * <code>IWorkbenchWindow</code> that it's being hosted in.
+ * <p>
+ * This method is called after the no argument constructor and before other
+ * methods are called.
+ * </p>
+ *
+ * @param workbenchWindow the current workbench
+ */
+ void init(IWorkbenchWindow workbenchWindow);
}

Back to the top