/**
* {@inheritDoc}
*/
public void run()
{
ImportConnectionsWizard wizard = new ImportConnectionsWizard();
IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
wizard.init( window.getWorkbench(), ( IStructuredSelection ) window.getSelectionService().getSelection() );
WizardDialog dialog = new WizardDialog( getShell(), wizard );
dialog.setBlockOnOpen( true );
dialog.create();
dialog.open();
}