org.eclipse.ui.wizards.datatransfer |
Package-level Javadoc
Provides the standard Import and Export wizards for
moving resources into and out of the workspace.
|
Java Source File Name | Type | Comment |
ExternalProjectImportWizard.java | Class | 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. |
FileStoreStructureProvider.java | Class | FileStoreStructureProvider is the structure provider for
IFileStore based file structures. |
FileSystemExportWizard.java | Class | 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. |
FileSystemImportWizard.java | Class | Standard workbench wizard for importing resources from the local file system
into the workspace.
This class may be instantiated and used without further configuration;
this class is not intended to be subclassed.
Example:
IWizard wizard = new FileSystemImportWizard();
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. |
FileSystemStructureProvider.java | Class | This class provides information regarding the structure and
content of specified file system File objects. |
IImportStructureProvider.java | Interface | Interface which can provide structure and content information
for an element (for example, a file system element). |
ImportOperation.java | Class | An operation which does the actual work of copying objects from the local file
system into the workspace. |
PopulateRootOperation.java | Class | The PopulateFilesOperation is an operation used to populate a FileSystemElement one
level deep rather than the whole way. |
SelectFilesOperation.java | Class | |
WizardExternalProjectImportPage.java | Class | Standard main page for a wizard that creates a project resource from
whose location already contains a project. |
ZipFileExportWizard.java | Class | Standard workbench wizard for exporting resources from the workspace
to a zip file.
This class may be instantiated and used without further configuration;
this class is not intended to be subclassed.
Example:
IWizard wizard = new ZipFileExportWizard();
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. |
ZipFileImportWizard.java | Class | Standard workbench wizard for importing resources from a zip file
into the workspace.
This class may be instantiated and used without further configuration;
this class is not intended to be subclassed.
Example:
IWizard wizard = new ZipFileImportWizard();
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. |
ZipFileStructureProvider.java | Class | This class provides information regarding the context structure and
content of specified zip file entry objects. |