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

Packages that use Wizard
Package Description
org.netbeans.api.wizard   
org.netbeans.spi.wizard   
 

Uses of Wizard in org.netbeans.api.wizard
 

Methods in org.netbeans.api.wizard with parameters of type Wizard
Modifier and Type Method and Description
protected abstract  void WizardDisplayer.install(java.awt.Container c, java.lang.Object layoutConstraint, Wizard awizard, javax.swing.Action helpAction, java.util.Map initialProperties, WizardResultReceiver receiver)
          Instance implementation of installInContainer().
static void WizardDisplayer.installInContainer(java.awt.Container c, java.lang.Object layoutConstraint, Wizard awizard, javax.swing.Action helpAction, java.util.Map initialProperties, WizardResultReceiver receiver)
          Install a panel representing a Wizard in a user-supplied container with a user-supplied layout constraint.
protected abstract  java.lang.Object WizardDisplayer.show(Wizard wizard, java.awt.Rectangle r, javax.swing.Action help, java.util.Map initialProperties)
          Show a wizard.
static java.lang.Object WizardDisplayer.showWizard(Wizard wizard)
          Show a wizard with default window placement and no Help button
static java.lang.Object WizardDisplayer.showWizard(Wizard wizard, javax.swing.Action help)
          Show a wizard with default window placement, showing the help button, which will invoke the passed action.
static java.lang.Object WizardDisplayer.showWizard(Wizard wizard, java.awt.Rectangle r)
          Show a wizard in the passed location on screen with no help button
static java.lang.Object WizardDisplayer.showWizard(Wizard wizard, java.awt.Rectangle rect, javax.swing.Action help, java.util.Map initialProperties)
          Display a wizard in a dialog, using the default implementation of WizardDisplayer.
 

Uses of Wizard in org.netbeans.spi.wizard
 

Methods in org.netbeans.spi.wizard that return Wizard
Modifier and Type Method and Description
 Wizard WizardPanelProvider.createWizard()
          Create a Wizard for this PanelProvider.
 Wizard WizardBranchController.createWizard()
          Create a Wizard to represent this branch controller.
static Wizard WizardPage.createWizard(java.lang.Class[] wizardPageClasses)
          Create a simple Wizard from an array of classes, each of which is a unique subclass of WizardPage, with a no-op WizardResultProducer.
static Wizard WizardPage.createWizard(java.lang.Class[] wizardPageClasses, WizardPage.WizardResultProducer finisher)
          Create simple Wizard from an array of classes, each of which is a unique subclass of WizardPage.
static Wizard WizardPage.createWizard(java.lang.String title, java.lang.Class[] wizardPageClasses)
          Create simple Wizard from an array of classes, each of which is a unique subclass of WizardPage.
static Wizard WizardPage.createWizard(java.lang.String title, java.lang.Class[] wizardPageClasses, WizardPage.WizardResultProducer finisher)
          Create simple Wizard from an array of classes, each of which is a unique subclass of WizardPage.
static Wizard WizardPage.createWizard(java.lang.String title, WizardPage[] contents)
           
static Wizard WizardPage.createWizard(java.lang.String title, WizardPage[] contents, WizardPage.WizardResultProducer finisher)
           
static Wizard WizardPage.createWizard(WizardPage[] contents)
          Create a simple Wizard from an array of WizardPages, with a no-op WizardResultProducer.
static Wizard WizardPage.createWizard(WizardPage[] contents, WizardPage.WizardResultProducer finisher)
          Create a simple Wizard from an array of WizardPages
protected  Wizard WizardBranchController.getWizardForStep(java.lang.String step, java.util.Map settings)
          Get the wizard which represents the subsequent panes after this step.
 

Methods in org.netbeans.spi.wizard with parameters of type Wizard
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)
           
 void WizardObserver.navigabilityChanged(Wizard wizard)
          Called when the enablement of the next/previous/finish buttons change, or the problem text changes.
 void WizardObserver.selectionChanged(Wizard wizard)
          Called whenever the current step changes.
 java.lang.Object Wizard.show(Wizard wizard, javax.swing.Action help)
          Delegates to WizardDisplayer.showWizard()
 java.lang.Object Wizard.show(Wizard wizard, java.awt.Rectangle r)
          Delegates to WizardDisplayer.showWizard()
 java.lang.Object Wizard.show(Wizard wizard, java.awt.Rectangle r, javax.swing.Action help)
          Delegates to WizardDisplayer.showWizard()
 void WizardObserver.stepsChanged(Wizard wizard)
          Called when the number or names of the steps of the wizard changes (for example, the user made a choice in one pane which affects the flow of subsequent steps).