Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

New wizards

Vlado Pakan edited this page Aug 1, 2013 · 4 revisions

API / Abstract

Implementation

Test Implementation

Usage

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();
Clone this wiki locally