Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/wizards/IWizardRegistry.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/wizards/IWizardRegistry.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/wizards/IWizardRegistry.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/wizards/IWizardRegistry.java
index 672f4509df9..23c728812d1 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/wizards/IWizardRegistry.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/wizards/IWizardRegistry.java
@@ -13,7 +13,6 @@
*******************************************************************************/
package org.eclipse.ui.wizards;
-
/**
* A registry describing all wizard extensions known to the workbench.
* <p>
@@ -36,9 +35,9 @@ public interface IWizardRegistry {
/**
* Return the wizards that have been designated as "primary".
*
- * @return the primary wizard descriptors. Never <code>null</code>.
+ * @return the primary wizard descriptors. Never <code>null</code>.
*/
- IWizardDescriptor [] getPrimaryWizards();
+ IWizardDescriptor[] getPrimaryWizards();
/**
* Find the category with the given id.
@@ -51,7 +50,7 @@ public interface IWizardRegistry {
/**
* Return the root category.
*
- * @return the root category. Never <code>null</code>.
+ * @return the root category. Never <code>null</code>.
*/
IWizardCategory getRootCategory();
}

Back to the top