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
Modifier and TypeMethodDescriptionfindCategory(String id) Find the category with the given id.findWizard(String id) Find a wizard with the given id.Return the wizards that have been designated as "primary".Return the root category. 
- 
Method Details
- 
findWizard
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
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. 
 
 -