Oracle JEWT 4.2.10

oracle.bali.ewt.wizard
Class WizardAdapter

java.lang.Object
  |
  +--oracle.bali.ewt.wizard.WizardAdapter
All Implemented Interfaces:
java.util.EventListener, WizardListener

public abstract class WizardAdapter
extends java.lang.Object
implements WizardListener

An adapter class for receiving WizardEvents. This class is provided as a convenience for easily creating listeners by extending this class and overriding only the methods of interest.

See Also:
WizardListener, WizardEvent, Wizard

Constructor Summary
WizardAdapter()
           
 
Method Summary
 void wizardApplyState(WizardEvent event)
          Invoked when the user wishes to see the current state of the wizard applied.
 void wizardCanceled(WizardEvent event)
          Invoked when the user has canceled the wizard.
 void wizardFinished(WizardEvent event)
          Invoked when the user has finished the wizard.
 void wizardSelectionChanged(WizardEvent event)
          Invoked when the selection has been changed.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WizardAdapter

public WizardAdapter()
Method Detail

wizardSelectionChanged

public void wizardSelectionChanged(WizardEvent event)
Invoked when the selection has been changed.
Specified by:
wizardSelectionChanged in interface WizardListener
Parameters:
event - the event

wizardApplyState

public void wizardApplyState(WizardEvent event)
Invoked when the user wishes to see the current state of the wizard applied.
Specified by:
wizardApplyState in interface WizardListener
Parameters:
event - the event

wizardCanceled

public void wizardCanceled(WizardEvent event)
Invoked when the user has canceled the wizard.
Specified by:
wizardCanceled in interface WizardListener
Parameters:
event - the event

wizardFinished

public void wizardFinished(WizardEvent event)
Invoked when the user has finished the wizard.
Specified by:
wizardFinished in interface WizardListener
Parameters:
event - the event

Oracle JEWT 4.2.10