Package org.tn5250j.event
Interface WizardListener
-
- All Known Implementing Classes:
SpoolExportWizard
public interface WizardListenerThe listener interface for those interested in receiving Wizard events.
-
-
Method Summary
Modifier and Type Method Description voidcanceled(WizardEvent e)Invoked if the Cancel action is triggered.voidfinished(WizardEvent e)Invoked if a "finish" action is triggered.voidhelp(WizardEvent e)Invoked if the Help action is triggered.voidnextBegin(WizardEvent e)Invoked before advancing to the next page.voidnextComplete(WizardEvent e)Invoked after advancing to the next page.voidpreviousBegin(WizardEvent e)Invoked before advancing to the previous page.voidpreviousComplete(WizardEvent e)Invoked after advancing to the previous page.
-
-
-
Method Detail
-
nextBegin
void nextBegin(WizardEvent e)
Invoked before advancing to the next page. Callinge.setAllowChange(false)will prevent the next page from being advanced too. Check thee.isLastPage()to see if you are on the last page.- Parameters:
e- an event
-
nextComplete
void nextComplete(WizardEvent e)
Invoked after advancing to the next page.- Parameters:
e- an event
-
previousBegin
void previousBegin(WizardEvent e)
Invoked before advancing to the previous page. Callinge.setAllowChange(false)will prevent the previous page from being advanced too.- Parameters:
e- an event
-
previousComplete
void previousComplete(WizardEvent e)
Invoked after advancing to the previous page.- Parameters:
e- an event
-
finished
void finished(WizardEvent e)
Invoked if a "finish" action is triggered.- Parameters:
e- an event
-
canceled
void canceled(WizardEvent e)
Invoked if the Cancel action is triggered.- Parameters:
e- an event
-
help
void help(WizardEvent e)
Invoked if the Help action is triggered.- Parameters:
e- an event
-
-