SVNImporterWizard wizard = new SVNImporterWizard(project);
Shell activeShell = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell();
WizardDialog wizardDialog = new WizardDialog(activeShell, wizard);
wizardDialog.open();
} else if (provider instanceof GitProvider) {
GITImporterWizard wizard = new GITImporterWizard(project);
Shell activeShell = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell();
WizardDialog wizardDialog = new WizardDialog(activeShell, wizard);
wizardDialog.open();
}
return null;