Class FileSystemImportWizard

java.lang.Object
org.eclipse.jface.wizard.Wizard
org.eclipse.ui.wizards.datatransfer.FileSystemImportWizard
All Implemented Interfaces:
IShellProvider, IWizard, IImportWizard, IWorkbenchWizard

public class FileSystemImportWizard extends Wizard implements IImportWizard
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. When the user hits Finish, the user-selected files are imported into the workspace, the dialog closes, and the call to open returns.

Restriction:
This class is not intended to be subclassed by clients.
  • Constructor Details

    • FileSystemImportWizard

      public FileSystemImportWizard()
      Creates a wizard for importing resources into the workspace from the file system.
  • Method Details

    • addPages

      public void addPages()
      Description copied from class: Wizard
      The Wizard implementation of this IWizard method does nothing. Subclasses should extend if extra pages need to be added before the wizard opens. New pages should be added by calling addPage.
      Specified by:
      addPages in interface IWizard
      Overrides:
      addPages in class Wizard
    • init

      public void init(IWorkbench currentWorkbench, IStructuredSelection currentSelection)
      Description copied from interface: IWorkbenchWizard
      Initializes this creation wizard using the passed workbench and object selection.

      This method is called after the no argument constructor and before other methods are called.

      Specified by:
      init in interface IWorkbenchWizard
      Parameters:
      currentWorkbench - the current workbench
      currentSelection - the current object selection
    • performFinish

      public boolean performFinish()
      Description copied from class: Wizard
      Subclasses must implement this IWizard method to perform any special finish processing for their wizard.
      Specified by:
      performFinish in interface IWizard
      Specified by:
      performFinish in class Wizard
      Returns:
      true to indicate the finish request was accepted, and false to indicate that the finish request was refused