Class ZipFileImportWizard
java.lang.Object
org.eclipse.jface.wizard.Wizard
org.eclipse.ui.wizards.datatransfer.ZipFileImportWizard
- All Implemented Interfaces:
IShellProvider,IWizard,IImportWizard,IWorkbenchWizard
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. When the user hits Finish, the user-selected zip file is imported into
the workspace, the dialog closes, and the call to open returns.
- Restriction:
- This class is not intended to be subclassed by clients.
-
Field Summary
Fields inherited from class org.eclipse.jface.wizard.Wizard
DEFAULT_IMAGE -
Constructor Summary
ConstructorsConstructorDescriptionCreates a wizard for importing resources into the workspace from a zip file. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddPages()TheWizardimplementation of thisIWizardmethod does nothing.protected String[]Get the file import mask used by the receiver.voidinit(IWorkbench currentWorkbench, IStructuredSelection currentSelection) Initializes this creation wizard using the passed workbench and object selection.booleanTheWizardimplementation of thisIWizardmethod does nothing and returnstrue.booleanSubclasses must implement thisIWizardmethod 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, getMinimumWizardSize, getNextPage, getPage, getPageCount, getPages, getPreviousPage, getShell, getStartingPage, getTitleBarColor, getWindowTitle, isHelpAvailable, needsPreviousAndNextButtons, needsProgressMonitor, setContainer, setDefaultPageImageDescriptor, setDialogSettings, setForcePreviousAndNextButtons, setHelpAvailable, setNeedsProgressMonitor, setTitleBarColor, setWindowTitleMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.eclipse.jface.wizard.IWizard
canFinish, createPageControls, dispose, getContainer, getDefaultPageImage, getDialogSettings, getMinimumWizardSize, getNextPage, getPage, getPageCount, getPages, getPreviousPage, getStartingPage, getTitleBarColor, getWindowTitle, isHelpAvailable, needsPreviousAndNextButtons, needsProgressMonitor, setContainer
-
Constructor Details
-
ZipFileImportWizard
public ZipFileImportWizard()Creates a wizard for importing resources into the workspace from a zip file.
-
-
Method Details
-
addPages
public void addPages()Description copied from class:WizardTheWizardimplementation of thisIWizardmethod does nothing. Subclasses should extend if extra pages need to be added before the wizard opens. New pages should be added by callingaddPage. -
getFileImportMask
Get the file import mask used by the receiver. By default use null so that there is no mask.- Returns:
- String[] or
null - Since:
- 3.4
-
init
Description copied from interface:IWorkbenchWizardInitializes 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:
initin interfaceIWorkbenchWizard- Parameters:
currentWorkbench- the current workbenchcurrentSelection- the current object selection
-
performCancel
public boolean performCancel()Description copied from class:WizardTheWizardimplementation of thisIWizardmethod does nothing and returnstrue. Subclasses should reimplement this method if they need to perform any special cancel processing for their wizard.- Specified by:
performCancelin interfaceIWizard- Overrides:
performCancelin classWizard- Returns:
trueto indicate the cancel request was accepted, andfalseto indicate that the cancel request was refused
-
performFinish
public boolean performFinish()Description copied from class:WizardSubclasses must implement thisIWizardmethod to perform any special finish processing for their wizard.- Specified by:
performFinishin interfaceIWizard- Specified by:
performFinishin classWizard- Returns:
trueto indicate the finish request was accepted, andfalseto indicate that the finish request was refused
-