Class BasicNewFolderResourceWizard
java.lang.Object
org.eclipse.jface.wizard.Wizard
org.eclipse.ui.wizards.newresource.BasicNewResourceWizard
org.eclipse.ui.wizards.newresource.BasicNewFolderResourceWizard
- All Implemented Interfaces:
- IShellProvider,- IWizard,- INewWizard,- IWorkbenchWizard
Standard workbench wizard that create a new folder resource in the workspace.
 
This class may be instantiated and used without further configuration; this class is not intended to be subclassed.
Example:
IWorkbenchWizard wizard = new BasicNewFolderResourceWizard(); 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, a folder resource at the user-specified
 workspace path is created, the dialog closes, and the call to
 open returns.
 
- Restriction:
- This class is not intended to be subclassed by clients.
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final StringThe wizard id for creating new folders in the workspace.Fields inherited from class org.eclipse.ui.wizards.newresource.BasicNewResourceWizardselectionFields inherited from class org.eclipse.jface.wizard.WizardDEFAULT_IMAGE
- 
Constructor SummaryConstructorsConstructorDescriptionCreates a wizard for creating a new folder resource in the workspace.
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddPages()TheWizardimplementation of thisIWizardmethod does nothing.voidinit(IWorkbench workbench, IStructuredSelection currentSelection) TheBasicNewResourceWizardimplementation of thisIWorkbenchWizardmethod records the given workbench and selection, and initializes the default banner image for the pages by callinginitializeDefaultPageImageDescriptor.protected voidInitializes the default page image descriptor to an appropriate banner.booleanSubclasses must implement thisIWizardmethod to perform any special finish processing for their wizard.Methods inherited from class org.eclipse.ui.wizards.newresource.BasicNewResourceWizardgetSelection, getWorkbench, selectAndReveal, selectAndRevealMethods inherited from class org.eclipse.jface.wizard.WizardaddPage, canFinish, createPageControls, dispose, getContainer, getDefaultPageImage, getDialogSettings, getMinimumWizardSize, getNextPage, getPage, getPageCount, getPages, getPreviousPage, getShell, getStartingPage, getTitleBarColor, getWindowTitle, isHelpAvailable, needsPreviousAndNextButtons, needsProgressMonitor, performCancel, setContainer, setDefaultPageImageDescriptor, setDialogSettings, setForcePreviousAndNextButtons, setHelpAvailable, setNeedsProgressMonitor, setTitleBarColor, setWindowTitleMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.eclipse.jface.wizard.IWizardcanFinish, createPageControls, dispose, getContainer, getDefaultPageImage, getDialogSettings, getMinimumWizardSize, getNextPage, getPage, getPageCount, getPages, getPreviousPage, getStartingPage, getTitleBarColor, getWindowTitle, isHelpAvailable, needsPreviousAndNextButtons, needsProgressMonitor, performCancel, setContainer
- 
Field Details- 
WIZARD_IDThe wizard id for creating new folders in the workspace.- Since:
- 3.4
- See Also:
 
 
- 
- 
Constructor Details- 
BasicNewFolderResourceWizardpublic BasicNewFolderResourceWizard()Creates a wizard for creating a new folder resource in the workspace.
 
- 
- 
Method Details- 
addPagespublic 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.
- 
initDescription copied from class:BasicNewResourceWizardTheBasicNewResourceWizardimplementation of thisIWorkbenchWizardmethod records the given workbench and selection, and initializes the default banner image for the pages by callinginitializeDefaultPageImageDescriptor. Subclasses may extend.- Specified by:
- initin interface- IWorkbenchWizard
- Overrides:
- initin class- BasicNewResourceWizard
- Parameters:
- workbench- the current workbench
- currentSelection- the current object selection
 
- 
initializeDefaultPageImageDescriptorprotected void initializeDefaultPageImageDescriptor()Description copied from class:BasicNewResourceWizardInitializes the default page image descriptor to an appropriate banner. By callingsetDefaultPageImageDescriptor. The default implementation of this method uses a generic new wizard image.Subclasses may reimplement. - Overrides:
- initializeDefaultPageImageDescriptorin class- BasicNewResourceWizard
 
- 
performFinishpublic boolean performFinish()Description copied from class:WizardSubclasses must implement thisIWizardmethod to perform any special finish processing for their wizard.- Specified by:
- performFinishin interface- IWizard
- Specified by:
- performFinishin class- Wizard
- Returns:
- trueto indicate the finish request was accepted, and- falseto indicate that the finish request was refused
 
 
-