use of org.eclipse.ui.IWorkbenchWizard in project linuxtools by eclipse.
the class ExportHandler method execute.
@Override
public Object execute(ExecutionEvent event) {
Display.getDefault().syncExec(() -> {
Shell parent = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell();
IWorkbenchWizard wizard = new ValgrindExportWizard();
wizard.init(PlatformUI.getWorkbench(), null);
WizardDialog dialog = new WizardDialog(parent, wizard);
dialog.open();
});
return null;
}
Aggregations