Uses of Class
org.netbeans.spi.wizard.WizardPanelNavResult

Packages that use WizardPanelNavResult
Package Description
org.netbeans.spi.wizard   
 

Uses of WizardPanelNavResult in org.netbeans.spi.wizard
 

Fields in org.netbeans.spi.wizard declared as WizardPanelNavResult
Modifier and Type Field and Description
static WizardPanelNavResult WizardPanelNavResult.PROCEED
          value for procced to next step in the wizard.
static WizardPanelNavResult WizardPanelNavResult.REMAIN_ON_PAGE
          Value to remain on the current page in the wizard
 

Methods in org.netbeans.spi.wizard that return WizardPanelNavResult
Modifier and Type Method and Description
 WizardPanelNavResult WizardPanel.allowBack(java.lang.String stepName, java.util.Map settings, Wizard wizard)
          This method is invoked when the "back" button has been pushed, to discard any data from the setings that will not been needed and for which the normal "just hide that data" is not the desired behavior.
 WizardPanelNavResult WizardPage.allowBack(java.lang.String stepName, java.util.Map settings, Wizard wizard)
           
 WizardPanelNavResult WizardPanel.allowFinish(java.lang.String stepName, java.util.Map settings, Wizard wizard)
          This method is invoked when the "finish" button has been pushed, to allow veto of the finish action BEFORE the wizard finish method is invoked.
 WizardPanelNavResult WizardPage.allowFinish(java.lang.String stepName, java.util.Map settings, Wizard wizard)
           
 WizardPanelNavResult WizardPanel.allowNext(java.lang.String stepName, java.util.Map settings, Wizard wizard)
          This method is invoked when the "next" button has been pushed, to do a final validation of input (such as doing a database login).
 WizardPanelNavResult WizardPage.allowNext(java.lang.String stepName, java.util.Map settings, Wizard wizard)