Subclasses must implement the createControl
method to create the specific controls for the wizard page.
Subclasses may call the following methods to configure the wizard page:
setDescription
setErrorMessage
setImageDescriptor
setMessage
setPageComplete
setPreviousPage
setTitle
Subclasses may override these methods if required:
performHelp
- may be reimplemented to display help for the pagecanFlipToNextPage
- may be extended or reimplementedisPageComplete
- may be extended setDescription
- may be extended setTitle
- may be extended dispose
- may be extended to dispose additional allocated SWT resources Note that clients are free to implement IWizardPage
from scratch instead of subclassing WizardPage
. Correct implementations of IWizardPage
will work with any correct implementation of IWizard
.
A note about implementations: A WizardPage
has knowledge about the wizard in which it is running (through the method {@link #getWizard()}. To maximize reusability, it is recommended, however, to keep this coupling as loose as possible by not tying a WizardPage
to a particular Wizard
implementation.
When navigating to the next page in the wizard, this is the guaranteed order of execution:
Wizard
@see Wizard
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|