@Override
  public Map getParameterValues() {
    final Map values = new HashMap();

    final IWizardRegistry wizardRegistry = getWizardRegistry();
    addParameterValues(values, wizardRegistry.getRootCategory());

    return values;
  }
Ejemplo n.º 2
0
    public IWizardDescriptor findWizard(String id) {
      final IWizardDescriptor delegate = DELEGATE.findWizard(id);
      if (delegate != null) {
        return new WizardDescriptorWrapper(delegate, contentProvider);
      }

      return delegate;
    }
Ejemplo n.º 3
0
 public IWizardCategory findCategory(String id) {
   return DELEGATE.findCategory(id);
 }
Ejemplo n.º 4
0
 public IWizardDescriptor[] getPrimaryWizards() {
   return DELEGATE.getPrimaryWizards();
 }
Ejemplo n.º 5
0
 public IWizardCategory getRootCategory() {
   return DELEGATE.getRootCategory();
 }