use of com.archimatetool.editor.ui.components.ExtendedWizardDialog in project archi by archimatetool.
the class JasperReportsHandler method execute.
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
IArchimateModel model = getActiveArchimateModel();
if (model != null) {
WizardDialog dialog = new ExtendedWizardDialog(workbenchWindow.getShell(), new ExportJasperReportsWizard(model), // $NON-NLS-1$
"ExportJasperReportsWizard");
dialog.open();
}
return null;
}
Aggregations