use of org.talend.spagic.engines.client.ui.wizards.SpagicDeployWizard in project tdi-studio-se by Talend.
the class DeployOnSpagicAction method doRun.
protected void doRun() {
SpagicDeployWizard processWizard = new SpagicDeployWizard();
IWorkbench workbench = getWorkbench();
processWizard.setWindowTitle(DEPLOYONSPAGIC);
processWizard.init(workbench, (IStructuredSelection) this.getSelection());
Shell activeShell = Display.getCurrent().getActiveShell();
WizardDialog dialog = new WizardDialog(activeShell, processWizard);
workbench.saveAllEditors(true);
dialog.open();
}
Aggregations