org.eclipse.ui.wizards.newresource
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:
- INewWizard, IWizard, IWorkbenchWizard
- public class BasicNewFolderResourceWizard
- extends BasicNewResourceWizard
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.
Method Summary |
void |
addPages()
Adds any last-minute pages to this wizard. |
void |
init(IWorkbench workbench,
IStructuredSelection currentSelection)
The BasicNewResourceWizard implementation of this
IWorkbenchWizard method records the given workbench and
selection, and initializes the default banner image for the pages
by calling initializeDefaultPageImageDescriptor . |
protected void |
initializeDefaultPageImageDescriptor()
Initializes the default page image descriptor to an appropriate banner. |
boolean |
performFinish()
Performs any actions appropriate in response to the user
having pressed the Finish button, or refuse if finishing
now is not permitted. |
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 |
BasicNewFolderResourceWizard
public BasicNewFolderResourceWizard()
- Creates a wizard for creating a new folder resource in the workspace.
addPages
public void addPages()
- Description copied from interface:
IWizard
- Adds any last-minute pages to this wizard.
This method is called just before the wizard becomes visible, to give the
wizard the opportunity to add any lazily created pages.
- Overrides:
addPages
in class Wizard
init
public void init(IWorkbench workbench,
IStructuredSelection currentSelection)
- Description copied from class:
BasicNewResourceWizard
- The
BasicNewResourceWizard
implementation of this
IWorkbenchWizard
method records the given workbench and
selection, and initializes the default banner image for the pages
by calling initializeDefaultPageImageDescriptor
.
Subclasses may extend.
- Overrides:
init
in class BasicNewResourceWizard
- Following copied from interface:
org.eclipse.ui.IWorkbenchWizard
- Parameters:
workbench
- the current workbenchselection
- the current object selection
initializeDefaultPageImageDescriptor
protected void initializeDefaultPageImageDescriptor()
- Description copied from class:
BasicNewResourceWizard
- Initializes the default page image descriptor to an appropriate banner.
By calling
setDefaultPageImageDescriptor
.
The default implementation of this method uses a generic new wizard image.
Subclasses may reimplement.
- Overrides:
initializeDefaultPageImageDescriptor
in class BasicNewResourceWizard
performFinish
public boolean performFinish()
- Description copied from interface:
IWizard
- Performs any actions appropriate in response to the user
having pressed the Finish button, or refuse if finishing
now is not permitted.
Normally this method is only called on the container's
current wizard. However if the current wizard is a nested wizard
this method will also be called on all wizards in its parent chain.
Such parents may use this notification to save state etc. However,
the value the parents return from this method is ignored.
- Overrides:
performFinish
in class Wizard
- Following copied from interface:
org.eclipse.jface.wizard.IWizard
- Returns:
true
to indicate the finish request
was accepted, and false
to indicate
that the finish request was refused
Copyright (c) IBM Corp. and others 2000, 2003. All Rights Reserved.