Oracle JEWT 4.2.10

oracle.bali.ewt.wizard
Interface WizardValidateListener

All Superinterfaces:
java.util.EventListener

public interface WizardValidateListener
extends java.util.EventListener

The listener interface for receiving validation WizardEvents. The VALIDATE_PAGE event always supports the Cancelable interface; the associated action can be cancelled by calling the cancel() method of this interface on the event.

Generally, WizardValidateListeners are not notified when the user hits the "Previous" button (but see ReentrantWizards).

See Also:
WizardEvent, BaseWizard, Cancelable

Method Summary
 void wizardValidatePage(WizardEvent event)
          Invoked when the user has asked to finish the wizard, apply the current state, or switch to another page.
 

Method Detail

wizardValidatePage

public void wizardValidatePage(WizardEvent event)
Invoked when the user has asked to finish the wizard, apply the current state, or switch to another page. Clients can refuse the user's request by casting the event to a Cancelable and calling the cancel() method on the event.
Parameters:
event - the event

Oracle JEWT 4.2.10