org.apache.commons.collections.set
Class AbstractSetDecorator
java.lang.Object
|
+--org.apache.commons.collections.collection.AbstractCollectionDecorator
|
+--org.apache.commons.collections.set.AbstractSetDecorator
All Implemented Interfaces:
Collection, SetKnown Direct Subclasses:
UnmodifiableEntrySet, AbstractSortedSetDecorator, ListOrderedSet, UnmodifiableSet
Decorates another
Set
to provide additional behaviour.
Methods are forwarded directly to the decorated set.
- Commons Collections 3.0
- Stephen Colebourne
AbstractSetDecorator
protected AbstractSetDecorator(Set set)
Constructor that wraps (not copies).
- set - the set to decorate, must not be null
- if set is null
getSet
protected Set getSet()
Gets the set being decorated.
- the decorated set
Set
to provide additional behaviour. Methods are forwarded directly to the decorated set.