org.netbeans.spi.wizard
Class WizardPanelNavResult

java.lang.Object
  extended by org.netbeans.spi.wizard.DeferredWizardResult
      extended by org.netbeans.spi.wizard.WizardPanelNavResult

public abstract class WizardPanelNavResult
extends DeferredWizardResult

Result class for the methods in WizardPanel. For immediate action, one of the two constantants PROCEED or REMAIN_ON_PAGE should be returned. Otherwise an instance of a subclass should be returned that computes a Boolean result.

Author:
stanley@stanleyknutson.com

Field Summary
Modifier and Type Field and Description
static WizardPanelNavResult PROCEED
          value for procced to next step in the wizard.
static WizardPanelNavResult REMAIN_ON_PAGE
          Value to remain on the current page in the wizard
 
Constructor Summary
Constructor and Description
WizardPanelNavResult()
           
WizardPanelNavResult(boolean useBusy)
           
 
Method Summary
Modifier and Type Method and Description
 boolean isDeferredComputation()
           
 
Methods inherited from class org.netbeans.spi.wizard.DeferredWizardResult
abort, canAbort, isUseBusy, start
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PROCEED

public static final WizardPanelNavResult PROCEED
value for procced to next step in the wizard.


REMAIN_ON_PAGE

public static final WizardPanelNavResult REMAIN_ON_PAGE
Value to remain on the current page in the wizard

Constructor Detail

WizardPanelNavResult

public WizardPanelNavResult(boolean useBusy)

WizardPanelNavResult

public WizardPanelNavResult()
Method Detail

isDeferredComputation

public boolean isDeferredComputation()