| | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public Step getFirstWizardStep() { |
| | | return Step.WELCOME; |
| | | public WizardStep getFirstWizardStep() { |
| | | return null; |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | protected void setWizardDialogState(QuickSetupDialog dlg, |
| | | UserData userData, |
| | | Step step) { |
| | | WizardStep step) { |
| | | } |
| | | |
| | | /** |
| | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public Set<Step> getWizardSteps() { |
| | | public Set<WizardStep> getWizardSteps() { |
| | | return null; |
| | | } |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public QuickSetupStepPanel createWizardStepPanel(Step step) { |
| | | public QuickSetupStepPanel createWizardStepPanel(WizardStep step) { |
| | | return null; |
| | | } |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public Step getNextWizardStep(Step step) { |
| | | public Step getNextWizardStep(WizardStep step) { |
| | | return null; |
| | | } |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public WizardStep getPreviousWizardStep(WizardStep step) { |
| | | return null; |
| | | } |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public void quitClicked(WizardStep step, QuickSetup qs) { |
| | | } |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | protected void updateUserData(WizardStep cStep, QuickSetup qs) |
| | | throws UserDataException |
| | | { |
| | | } |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public void previousClicked(WizardStep cStep, QuickSetup qs) { |
| | | } |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public void finishClicked(final WizardStep cStep, final QuickSetup qs) { |
| | | } |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public void nextClicked(WizardStep cStep, QuickSetup qs) { |
| | | } |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public void closeClicked(WizardStep cStep, QuickSetup qs) { |
| | | } |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public void cancelClicked(WizardStep cStep, QuickSetup qs) { |
| | | } |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public void run() { |
| | | } |
| | | |