Lines Matching refs:WizardStep

37 import org.opends.quicksetup.WizardStep;
61 private WizardStep displayedStep;
90 public abstract WizardStep getFirstWizardStep();
101 public void setDisplayedWizardStep(WizardStep step,
121 WizardStep step);
187 abstract public Set<? extends WizardStep> getWizardSteps();
194 abstract public QuickSetupStepPanel createWizardStepPanel(WizardStep step);
201 abstract public WizardStep getNextWizardStep(WizardStep step);
208 abstract public WizardStep getPreviousWizardStep(WizardStep step);
214 abstract public WizardStep getFinishedStep();
218 * @return WizardStep being displayed.
220 public WizardStep getCurrentWizardStep() {
226 * @param step WizardStep for which the return value indicates whether
231 public boolean isSubStep(WizardStep step)
239 * @param step WizardStep for which the return value indicates whether
246 public boolean isVisible(WizardStep step, UserData userData)
254 * @param step WizardStep for which the return value indicates whether
261 public boolean isVisible(WizardStep step, QuickSetup qs)
275 public LinkedHashSet<WizardStep> getOrderedSteps()
277 LinkedHashSet<WizardStep> orderedSteps = new LinkedHashSet<WizardStep>();
278 WizardStep step = getFirstWizardStep();
289 * @param step WizardStep for which the the return value indicates whether
294 public boolean canGoBack(WizardStep step) {
301 * @param step WizardStep for which the the return value indicates whether
306 public boolean canGoForward(WizardStep step) {
313 * @param step WizardStep for which the the return value indicates whether
317 public abstract boolean canFinish(WizardStep step);
321 * @param cStep WizardStep at which the user clicked the previous button
324 public abstract void previousClicked(WizardStep cStep, QuickSetup qs);
328 * @param cStep WizardStep at which the user clicked the previous button
335 public abstract boolean finishClicked(final WizardStep cStep,
340 * @param cStep WizardStep at which the user clicked the next button
343 public abstract void nextClicked(WizardStep cStep, QuickSetup qs);
347 * @param cStep WizardStep at which the user clicked the close button
350 public void closeClicked(WizardStep cStep, QuickSetup qs) {
356 * @param step WizardStep at which the user clicked the quit button
359 public void quitClicked(WizardStep step, QuickSetup qs) {
371 public abstract void updateUserData(WizardStep cStep, QuickSetup qs)