use of org.talend.camel.designer.ui.wizards.JobCamelScriptsExportWizard in project tesb-studio-se by Talend.
the class ExporCameltJobScriptAction method doRun.
protected void doRun() {
JobCamelScriptsExportWizard processWizard = new JobCamelScriptsExportWizard();
IWorkbench workbench = getWorkbench();
processWizard.setWindowTitle(EXPORTJOBSCRIPTS);
processWizard.init(workbench, (IStructuredSelection) this.getSelection());
WizardDialog dialog = new WizardDialog(shell, processWizard);
workbench.saveAllEditors(true);
dialog.setPageSize(830, 450);
dialog.open();
}
Aggregations