Package org.eclipse.ui
Interface IWorkingSetUpdater2
-
- All Superinterfaces:
IWorkingSetUpdater
public interface IWorkingSetUpdater2 extends IWorkingSetUpdater
IWorkingSetUpdater2
can be used to restore the content of a working set, if the working set content shouldn't be persisted by the framework.- Since:
- 3.120
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isManagingPersistenceOf(IWorkingSet set)
Answers if the given working set content presistence is managed by this updaterIAdaptable[]
restore(IWorkingSet set)
Restores working set content if its persistence is managed by current updater-
Methods inherited from interface org.eclipse.ui.IWorkingSetUpdater
add, contains, dispose, remove
-
-
-
-
Method Detail
-
isManagingPersistenceOf
boolean isManagingPersistenceOf(IWorkingSet set)
Answers if the given working set content presistence is managed by this updater- Parameters:
set
- non null working set- Returns:
- true if the working set content should not be persisted by the framework
-
restore
IAdaptable[] restore(IWorkingSet set)
Restores working set content if its persistence is managed by current updater- Parameters:
set
- non null working set- Returns:
- non null array with initial children of given working set
- See Also:
isManagingPersistenceOf(IWorkingSet)
-
-