Uses of Class
bayern.steinbrecher.wizard.WizardPage
| Package | Description |
|---|---|
| bayern.steinbrecher.wizard |
Contains a wizard for being used with JavaFX.
|
-
Uses of WizardPage in bayern.steinbrecher.wizard
Methods in bayern.steinbrecher.wizard that return WizardPage Modifier and Type Method Description WizardPage<?>Wizard. getCurrentPage()Returns the currently shown page.WizardPage<?>WizardController. getCurrentPage()Returns the currently shown page.WizardPage<T>WizardableView. getWizardPage()Methods in bayern.steinbrecher.wizard that return types with arguments of type WizardPage Modifier and Type Method Description javafx.beans.property.ReadOnlyProperty<WizardPage<?>>Wizard. currentPageProperty()Returns the property holding the currently shown page.javafx.beans.property.ReadOnlyObjectProperty<WizardPage<?>>WizardController. currentPageProperty()Returns the property holding the currently shown page.java.util.Map<java.lang.String,WizardPage<?>>WizardController. getPages()Returns all visitable pages.javafx.beans.property.MapProperty<java.lang.String,WizardPage<?>>WizardController. pagesProperty()Returns the property holding all pages visitable.Methods in bayern.steinbrecher.wizard with parameters of type WizardPage Modifier and Type Method Description voidWizard. put(java.lang.String key, 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. put(java.lang.String key, 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 voidWizardController. setPages(java.util.Map<java.lang.String,WizardPage<?>> pages)Sets a new map of visitable pages.Constructor parameters in bayern.steinbrecher.wizard with type arguments of type WizardPage Constructor Description Wizard(java.util.Map<java.lang.String,WizardPage<?>> pages)Constructs a wizard with showingpagesand using default stylesheet.