use of org.talend.repository.ui.wizards.ConfigExternalLib.ConfigExternalLibWizard in project tdi-studio-se by Talend.
the class ConfigRoutineLibraryAction method doRun.
/*
* (non-Javadoc)
*
* @see org.eclipse.jface.action.Action#run()
*/
@Override
protected void doRun() {
ConfigExternalLibWizard wizard = new ConfigExternalLibWizard();
IWorkbench workbench = getWorkbench();
wizard.init(workbench, (IStructuredSelection) getSelection());
Shell activeShell = Display.getCurrent().getActiveShell();
WizardDialog dialog = new WizardDialog(activeShell, wizard);
dialog.open();
}
Aggregations