| Standard workbench wizard for importing projects defined
outside of the currently defined projects into Eclipse.
This class may be instantiated and used without further configuration;
this class is not intended to be subclassed.
Example:
IWizard wizard = new ExternalProjectImportWizard();
wizard.init(workbench, selection);
WizardDialog dialog = new WizardDialog(shell, wizard);
dialog.open();
During the call to open , the wizard dialog is presented to the
user. When the user hits Finish, a project is created with the location
specified by the user.
|