@Override public Map getParameterValues() { final Map values = new HashMap(); final IWizardRegistry wizardRegistry = getWizardRegistry(); addParameterValues(values, wizardRegistry.getRootCategory()); return values; }
public IWizardDescriptor findWizard(String id) { final IWizardDescriptor delegate = DELEGATE.findWizard(id); if (delegate != null) { return new WizardDescriptorWrapper(delegate, contentProvider); } return delegate; }
public IWizardCategory findCategory(String id) { return DELEGATE.findCategory(id); }
public IWizardDescriptor[] getPrimaryWizards() { return DELEGATE.getPrimaryWizards(); }
public IWizardCategory getRootCategory() { return DELEGATE.getRootCategory(); }