Package org.eclipse.ui.wizards
Interface IWizardRegistry
-
public interface IWizardRegistry
A registry describing all wizard extensions known to the workbench.This interface is not intended to be implemented by clients.
- Since:
- 3.1
- Restriction:
- This interface is not intended to be implemented by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IWizardCategory
findCategory(String id)
Find the category with the given id.IWizardDescriptor
findWizard(String id)
Find a wizard with the given id.IWizardDescriptor[]
getPrimaryWizards()
Return the wizards that have been designated as "primary".IWizardCategory
getRootCategory()
Return the root category.
-
-
-
Method Detail
-
findWizard
IWizardDescriptor findWizard(String id)
Find a wizard with the given id.- Parameters:
id
- the id to search for- Returns:
- the wizard descriptor matching the given id or
null
-
getPrimaryWizards
IWizardDescriptor[] getPrimaryWizards()
Return the wizards that have been designated as "primary".- Returns:
- the primary wizard descriptors. Never
null
.
-
findCategory
IWizardCategory findCategory(String id)
Find the category with the given id.- Parameters:
id
- the id of the category to search for- Returns:
- the category matching the given id or
null
-
getRootCategory
IWizardCategory getRootCategory()
Return the root category.- Returns:
- the root category. Never
null
.
-
-