if (module == null) {
return;
}
ImportWizard wiz = new ImportWizard();
IResource resource = node.getResourceForImportExport();
if (resource==null) {
return;
}
IStructuredSelection selection = new StructuredSelection(resource);
wiz.init(PlatformUI.getWorkbench(), selection);
WizardDialog dialog = new WizardDialog(PlatformUI.getWorkbench().getDisplay().getActiveShell(), wiz);
dialog.open();
}