This repository was archived by the owner on Dec 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
Import and export wizards
Martin Malina edited this page Mar 28, 2014
·
6 revisions
Implement Export\Import Wizard Dialog
public class ExportWizardDialogImpl extends ExportWizardDialog {
public ExportWizardDialogImpl() {
super(<category>, <name>);
}
@Override
public WizardPage getFirstPage() {
return <wizard page>;
}
}Open Export\Import Wizard
ExportWizardDialogImpl exportWizardDialogImpl = new ExportWizardDialogImpl();
exportWizardDialogImpl.open();Move to next page
exportWizardDialogImpl.next();Select page
exportWizardDialogImpl.selectPage(pageIndex);Finish Wizard
exportWizardDialogImpl.finish();