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.


Field Summary
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
 
Fields inherited from class org.netbeans.spi.wizard.DeferredWizardResult
useBusy
 
Constructor Summary
WizardPanelNavResult()
           
 
Method Summary
 boolean isDeferredComputation()
           
 
Methods inherited from class org.netbeans.spi.wizard.DeferredWizardResult
abort, canAbort, isUseBusy, setUseBusy, 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()
Method Detail

isDeferredComputation

public boolean isDeferredComputation()