| Standard workbench wizard for exporting resources from the workspace
to the local file system.
This class may be instantiated and used without further configuration;
this class is not intended to be subclassed.
Example:
IWizard wizard = new FileSystemExportWizard();
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, the user-selected workspace resources
are exported to the user-specified location in the local file system,
the dialog closes, and the call to open returns.
|