Lines Matching refs:WizardStep

36 import org.opends.quicksetup.WizardStep;
58 private WizardStep displayedStep;
84 public abstract WizardStep getFirstWizardStep();
95 public void setDisplayedWizardStep(WizardStep step,
115 WizardStep step);
181 public abstract Set<? extends WizardStep> getWizardSteps();
188 public abstract QuickSetupStepPanel createWizardStepPanel(WizardStep step);
195 public abstract WizardStep getNextWizardStep(WizardStep step);
202 public abstract WizardStep getPreviousWizardStep(WizardStep step);
208 public abstract WizardStep getFinishedStep();
212 * @return WizardStep being displayed.
214 public WizardStep getCurrentWizardStep() {
220 * @param step WizardStep for which the return value indicates whether
225 public boolean isSubStep(WizardStep step)
233 * @param step WizardStep for which the return value indicates whether
240 public boolean isVisible(WizardStep step, UserData userData)
248 * @param step WizardStep for which the return value indicates whether
255 public boolean isVisible(WizardStep step, QuickSetup qs)
269 public LinkedHashSet<WizardStep> getOrderedSteps()
271 LinkedHashSet<WizardStep> orderedSteps = new LinkedHashSet<>();
272 WizardStep step = getFirstWizardStep();
283 * @param step WizardStep for which the the return value indicates whether
288 public boolean canGoBack(WizardStep step) {
295 * @param step WizardStep for which the the return value indicates whether
300 public boolean canGoForward(WizardStep step) {
307 * @param step WizardStep for which the the return value indicates whether
311 public abstract boolean canFinish(WizardStep step);
315 * @param cStep WizardStep at which the user clicked the previous button
318 public abstract void previousClicked(WizardStep cStep, QuickSetup qs);
322 * @param cStep WizardStep at which the user clicked the previous button
329 public abstract boolean finishClicked(final WizardStep cStep,
334 * @param cStep WizardStep at which the user clicked the next button
337 public abstract void nextClicked(WizardStep cStep, QuickSetup qs);
341 * @param cStep WizardStep at which the user clicked the close button
344 public void closeClicked(WizardStep cStep, QuickSetup qs) {
350 * @param step WizardStep at which the user clicked the quit button
353 public void quitClicked(WizardStep step, QuickSetup qs) {
365 public abstract void updateUserData(WizardStep cStep, QuickSetup qs)