Uses of Class
org.controlsfx.dialog.WizardPane
-
Packages that use WizardPane Package Description org.controlsfx.dialog A package containing a powerful (yet easy to use) dialogs API for showing modal dialogs in JavaFX-based applications. -
-
Uses of WizardPane in org.controlsfx.dialog
Methods in org.controlsfx.dialog that return types with arguments of type WizardPane Modifier and Type Method Description Optional<WizardPane>
Wizard.Flow. advance(WizardPane currentPage)
Advances the wizard to the next page if possible.Optional<WizardPane>
Wizard.LinearFlow. advance(WizardPane currentPage)
Advances the wizard to the next page if possible.Methods in org.controlsfx.dialog with parameters of type WizardPane Modifier and Type Method Description Optional<WizardPane>
Wizard.Flow. advance(WizardPane currentPage)
Advances the wizard to the next page if possible.Optional<WizardPane>
Wizard.LinearFlow. advance(WizardPane currentPage)
Advances the wizard to the next page if possible.boolean
Wizard.Flow. canAdvance(WizardPane currentPage)
Check if advancing to the next page is possibleboolean
Wizard.LinearFlow. canAdvance(WizardPane currentPage)
Check if advancing to the next page is possibleConstructors in org.controlsfx.dialog with parameters of type WizardPane Constructor Description LinearFlow(WizardPane... pages)
Creates a new LinearFlow instance that will allow for stepping through the given varargs array ofWizardPane
instances.Constructor parameters in org.controlsfx.dialog with type arguments of type WizardPane Constructor Description LinearFlow(Collection<WizardPane> pages)
Creates a new LinearFlow instance that will allow for stepping through the given collection ofWizardPane
instances.
-