use of org.talend.sbi.engines.client.ui.wizards.PublishOnSpagoExportWizard in project tdi-studio-se by Talend.
the class PublishOnSpagoAction method doRun.
protected void doRun() {
PublishOnSpagoExportWizard publishWizard = new PublishOnSpagoExportWizard();
IWorkbench workbench = getWorkbench();
//$NON-NLS-1$
publishWizard.setWindowTitle(EXPORTJOBSCRIPTS + " (SpagoBI)");
publishWizard.init(workbench, (IStructuredSelection) this.getSelection());
Shell activeShell = Display.getCurrent().getActiveShell();
WizardDialog dialog = new WizardDialog(activeShell, publishWizard);
dialog.open();
}
Aggregations