-
Notifications
You must be signed in to change notification settings - Fork 43
New wizards
Martin Malina edited this page Mar 28, 2014
·
4 revisions
Implement New Wizard Dialog
private class NewWizardDialogImpl extends NewWizardDialog {
public NewWizardDialogImpl() {
super(<category>, <name>);
}
@Override
public WizardPage getFirstPage() {
return <wizard page>;
}
}
Open New Wizard
NewWizardDialogImpl newWizardDialogImpl = new NewWizardDialogImpl();
newWizardDialogImpl.open();
Move to next page
newWizardDialogImpl.next();
Select page
newWizardDialogImpl.selectPage(pageIndex);
Finish Wizard
newWizardDialogImpl.finish();