Uses of Class
bayern.steinbrecher.wizard.WizardPage
| Package | Description |
|---|---|
| bayern.steinbrecher.wizard | |
| bayern.steinbrecher.wizard.pages |
Contains a collection of common types of wizard pages which may be either used directly or as a reference for
implementing custom wizard pages.
|
-
Uses of WizardPage in bayern.steinbrecher.wizard
Subclasses of WizardPage in bayern.steinbrecher.wizard Modifier and Type Class Description classStandaloneWizardPage<T extends java.util.Optional<?>,C extends StandaloneWizardPageController<T>>Represents aWizardPagewhich can be shown without being embedded into aWizard.Methods in bayern.steinbrecher.wizard that return types with arguments of type WizardPage Modifier and Type Method Description @NotNull java.util.Map<java.lang.String,WizardPage<?,?>>WizardController. getVisitablePages()<R extends java.util.Optional<?>, C extends WizardPageController<R>>
java.util.concurrent.CompletableFuture<WizardPage<R,C>>WizardPage. setFinishAndDynamicNext(boolean finish, @Nullable java.util.function.Supplier<WizardPage<R,C>> dynamicNextFunction, @NotNull java.lang.String pageID, @NotNull Wizard containingWizard)Deprecated, for removal: This API element is subject to removal in a future version.@NotNull javafx.beans.property.MapProperty<java.lang.String,WizardPage<?,?>>WizardController. visitablePagesProperty()Methods in bayern.steinbrecher.wizard with parameters of type WizardPage Modifier and Type Method Description voidWizard. putPage(@NotNull java.lang.String key, @NotNull WizardPage<?,?> page)Adds the given page to the wizard and replaces pages with the same key but only if the page was not already visited.voidWizardController. putPage(@NotNull java.lang.String key, @NotNull WizardPage<?,?> page)Adds the given page to the wizard and replaces pages with the same key but only if the page was not already visited.Method parameters in bayern.steinbrecher.wizard with type arguments of type WizardPage Modifier and Type Method Description static @NotNull WizardWizard. create(@NotNull java.util.Map<java.lang.String,WizardPage<?,?>> pages)<R extends java.util.Optional<?>, C extends WizardPageController<R>>
java.util.concurrent.CompletableFuture<WizardPage<R,C>>WizardPage. setFinishAndDynamicNext(boolean finish, @Nullable java.util.function.Supplier<WizardPage<R,C>> dynamicNextFunction, @NotNull java.lang.String pageID, @NotNull Wizard containingWizard)Deprecated, for removal: This API element is subject to removal in a future version.voidWizardController. setVisitablePages(@NotNull java.util.Map<java.lang.String,WizardPage<?,?>> visitablePages)Sets a new map of visitable pages. -
Uses of WizardPage in bayern.steinbrecher.wizard.pages
Subclasses of WizardPage in bayern.steinbrecher.wizard.pages Modifier and Type Class Description classSelection<T extends java.lang.Comparable<? extends T>>classSelectionGroup<T extends java.lang.Comparable<T>,G>Represents aSelectionwhich allows to select and group items.classTablePage