Package org.eclipse.ui.dialogs
Interface IWorkingSetNewWizard
-
- All Superinterfaces:
IWizard
public interface IWorkingSetNewWizard extends IWizard
A working set new wizard allows creating new working sets using a plug-in specific working set page.Use org.eclipse.ui.IWorkingSetManager#createWorkingSetNewWizard(String[] workingSetIds) to create an instance of this wizard.
This interface is not intended to be implemented by clients.
- Since:
- 3.1
- See Also:
IWorkingSetManager
,IWorkingSetPage
- Restriction:
- This interface is not intended to be implemented by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IWorkingSet
getSelection()
Returns the new working set.-
Methods inherited from interface org.eclipse.jface.wizard.IWizard
addPages, canFinish, createPageControls, dispose, getContainer, getDefaultPageImage, getDialogSettings, getNextPage, getPage, getPageCount, getPages, getPreviousPage, getStartingPage, getTitleBarColor, getWindowTitle, isHelpAvailable, needsPreviousAndNextButtons, needsProgressMonitor, performCancel, performFinish, setContainer
-
-
-
-
Method Detail
-
getSelection
IWorkingSet getSelection()
Returns the new working set. Returnsnull
if the wizard has been cancelled.- Returns:
- the new working set or
null
if the wizard has been cancelled.
-
-