org.pietschy.wizard
Interface WizardListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
WizardAdapter, WizardFrameCloser

public interface WizardListener
extends java.util.EventListener

This interface allows other classes to be notified when this wizard is cancelled or closed.

See Also:
WizardAdapter

Method Summary
 void wizardCancelled(WizardEvent e)
          Called when the user cancels the wizard.
 void wizardClosed(WizardEvent e)
          Called when the user closes the wizard.
 

Method Detail

wizardClosed

void wizardClosed(WizardEvent e)
Called when the user closes the wizard.

Parameters:
e - the wizard event.

wizardCancelled

void wizardCancelled(WizardEvent e)
Called when the user cancels the wizard.

Parameters:
e - the wizard event.