| 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.
|