use of org.talend.metadata.managment.ui.wizard.documentation.DocumentationCreateWizard in project tdi-studio-se by Talend.
the class CreateDocumentationAction method doRun.
/*
* (non-Javadoc)
*
* @see org.eclipse.jface.action.Action#run()
*/
@Override
protected void doRun() {
DocumentationCreateWizard docWizard = new DocumentationCreateWizard(PlatformUI.getWorkbench(), getPath());
WizardDialog dlg = new WizardDialog(Display.getCurrent().getActiveShell(), docWizard);
dlg.open();
RepositoryNode node = (RepositoryNode) ((IStructuredSelection) getSelection()).getFirstElement();
}
Aggregations