org.eclipse.ui.wizards.newresource |
Package-level Javadoc
Provides the standard wizards for creating files,
folders, and projects in the workspace.
|
Java Source File Name | Type | Comment |
BasicNewFileResourceWizard.java | Class | Standard workbench wizard that create a new file 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 BasicNewFileResourceWizard();
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. |
BasicNewFolderResourceWizard.java | Class | 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. |
BasicNewProjectResourceWizard.java | Class | Standard workbench wizard that creates a new project 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 BasicNewProjectResourceWizard();
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. |
BasicNewResourceWizard.java | Class | Abstract base implementation of the standard workbench wizards
that create new resources in the workspace. |