|
Eclipse Platform Release 3.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.eclipse.jface.wizard.Wizard
org.eclipse.ui.wizards.datatransfer.FileSystemImportWizard
public class FileSystemImportWizard
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.
Field Summary |
---|
Fields inherited from class org.eclipse.jface.wizard.Wizard |
---|
DEFAULT_IMAGE |
Constructor Summary | |
---|---|
FileSystemImportWizard()
Creates a wizard for importing resources into the workspace from the file system. |
Method Summary | |
---|---|
void |
addPages()
The Wizard implementation of this IWizard
method does nothing. |
void |
init(IWorkbench workbench,
IStructuredSelection currentSelection)
Initializes this creation wizard using the passed workbench and object selection. |
boolean |
performFinish()
Subclasses must implement this IWizard method to perform
any special finish processing for their wizard. |
Methods inherited from class org.eclipse.jface.wizard.Wizard |
---|
addPage, canFinish, createPageControls, dispose, getContainer, getDefaultPageImage, getDialogSettings, getNextPage, getPage, getPageCount, getPages, getPreviousPage, getShell, getStartingPage, getTitleBarColor, getWindowTitle, isHelpAvailable, needsPreviousAndNextButtons, needsProgressMonitor, performCancel, setContainer, setDefaultPageImageDescriptor, setDialogSettings, setForcePreviousAndNextButtons, setHelpAvailable, setNeedsProgressMonitor, setTitleBarColor, setWindowTitle |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.eclipse.jface.wizard.IWizard |
---|
canFinish, createPageControls, dispose, getContainer, getDefaultPageImage, getDialogSettings, getNextPage, getPage, getPageCount, getPages, getPreviousPage, getStartingPage, getTitleBarColor, getWindowTitle, isHelpAvailable, needsPreviousAndNextButtons, needsProgressMonitor, performCancel, setContainer |
Constructor Detail |
---|
public FileSystemImportWizard()
Method Detail |
---|
public void addPages()
Wizard
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
.
addPages
in interface IWizard
addPages
in class Wizard
public void init(IWorkbench workbench, IStructuredSelection currentSelection)
IWorkbenchWizard
This method is called after the no argument constructor and before other methods are called.
init
in interface IWorkbenchWizard
workbench
- the current workbenchcurrentSelection
- the current object selectionpublic boolean performFinish()
Wizard
IWizard
method to perform
any special finish processing for their wizard.
performFinish
in interface IWizard
performFinish
in class Wizard
true
to indicate the finish request
was accepted, and false
to indicate
that the finish request was refused
|
Eclipse Platform Release 3.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Guidelines for using Eclipse APIs.
Copyright (c) IBM Corp. and others 2000, 2006. All rights reserved.