org.apache.commons.collections.set
Class AbstractSetDecorator
- Collection, Set
public abstract class AbstractSetDecorator
implements Set
Decorates another
Set
to provide additional behaviour.
Methods are forwarded directly to the decorated set.
$Revision: 1.4 $ $Date: 2004/06/02 21:53:03 $
protected Set | getSet() - Gets the set being decorated.
|
add , addAll , clear , contains , containsAll , equals , getCollection , hashCode , isEmpty , iterator , remove , removeAll , retainAll , size , toArray , toArray , toString |
AbstractSetDecorator
protected AbstractSetDecorator()
Constructor only used in deserialization, do not use otherwise.
AbstractSetDecorator
protected AbstractSetDecorator(Set set)
Constructor that wraps (not copies).
set
- the set to decorate, must not be null
getSet
protected Set getSet()
Gets the set being decorated.
Copyright © 2001-2006 Apache Software Foundation. All Rights Reserved.