Package org.eclipse.ui
Interface IAggregateWorkingSet
-
- All Superinterfaces:
IAdaptable
,IPersistable
,IPersistableElement
,IWorkingSet
public interface IAggregateWorkingSet extends IWorkingSet
Contains a set ofIWorkingSet
. Sets of working sets are used by viewers to contain all of the working sets being shown. Sets can also be nested. In classes that implement this, theIWorkingSet.getElements()
returns all of the elements of each of the working sets in this set. Instances ofIWorkingSet
can be cast to IAggregateWorkingSet ifIWorkingSet.isAggregateWorkingSet()
is true.- Since:
- 3.5 initial version
- 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[]
getComponents()
Returns the working sets contained in this aggregate working set.-
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
-
Methods inherited from interface org.eclipse.ui.IPersistable
saveState
-
Methods inherited from interface org.eclipse.ui.IPersistableElement
getFactoryId
-
Methods inherited from interface org.eclipse.ui.IWorkingSet
adaptElements, getElements, getId, getImage, getImageDescriptor, getLabel, getName, isAggregateWorkingSet, isEditable, isEmpty, isSelfUpdating, isVisible, setElements, setId, setLabel, setName
-
-
-
-
Method Detail
-
getComponents
IWorkingSet[] getComponents()
Returns the working sets contained in this aggregate working set. Clients can do what they wish with the returned array, as it will have no effect on the state of the this object.- Returns:
- the working sets contained in this aggregate working set.
-
-