public interface WizardListener
| Modifier and Type | Method and Description |
|---|---|
void |
canceled(WizardEvent e)
Invoked if the Cancel action is triggered.
|
void |
finished(WizardEvent e)
Invoked if a "finish" action is triggered.
|
void |
help(WizardEvent e)
Invoked if the Help action is triggered.
|
void |
nextBegin(WizardEvent e)
Invoked before advancing to the next page.
|
void |
nextComplete(WizardEvent e)
Invoked after advancing to the next page.
|
void |
previousBegin(WizardEvent e)
Invoked before advancing to the previous page.
|
void |
previousComplete(WizardEvent e)
Invoked after advancing to the previous page.
|
void nextBegin(WizardEvent e)
e.setAllowChange(false) will prevent the
next page from being advanced too.
Check the e.isLastPage() to see if you are on the
last page.e - an eventvoid nextComplete(WizardEvent e)
e - an eventvoid previousBegin(WizardEvent e)
e.setAllowChange(false) will prevent the
previous page from being advanced too.e - an eventvoid previousComplete(WizardEvent e)
e - an eventvoid finished(WizardEvent e)
e - an eventvoid canceled(WizardEvent e)
e - an eventvoid help(WizardEvent e)
e - an eventCopyright © 2018. All rights reserved.