net.cscott.jutil
Class CollectionWrapper<E>
java.lang.Object
   net.cscott.jutil.CollectionWrapper<E>
net.cscott.jutil.CollectionWrapper<E>
- All Implemented Interfaces: 
- Iterable<E>, Collection<E>
- Direct Known Subclasses: 
- ListWrapper, SetWrapper
- public abstract class CollectionWrapper<E> 
- extends Object- implements Collection<E>
CollectionWrapper is a class that acts as a wrapper
 around another Collection, using it as its backing store.  This
 class isn't meant for direct usage, but rather provides for an easy
 way for developers to quickly add extra independent behavior to
 their own specific Collections without having to reimplement all of
 AbstractCollection's interface
- Version:
- $Id: CollectionWrapper.java,v 1.4 2006-10-30 19:58:05 cananian Exp $
- Author:
- Felix S. Klock II 
 
 
 
CollectionWrapper
protected CollectionWrapper()
- Creates a CollectionWrapper.
 
wrapped
protected abstract Collection<E> wrapped()
- Implementations should return the wrapped Collectionhere.
 
- 
 
- 
 
add
public boolean add(E o)
- 
- Specified by:
- addin interface- Collection<E>
 
- 
 
addAll
public boolean addAll(Collection<? extends E> c)
- 
- Specified by:
- addAllin interface- Collection<E>
 
- 
 
clear
public void clear()
- 
- Specified by:
- clearin interface- Collection<E>
 
- 
 
contains
public boolean contains(Object o)
- 
- Specified by:
- containsin interface- Collection<E>
 
- 
 
containsAll
public boolean containsAll(Collection<?> c)
- 
- Specified by:
- containsAllin interface- Collection<E>
 
- 
 
isEmpty
public boolean isEmpty()
- 
- Specified by:
- isEmptyin interface- Collection<E>
 
- 
 
iterator
public Iterator<E> iterator()
- 
- Specified by:
- iteratorin interface- Iterable<E>
- Specified by:
- iteratorin interface- Collection<E>
 
- 
 
remove
public boolean remove(Object o)
- 
- Specified by:
- removein interface- Collection<E>
 
- 
 
removeAll
public boolean removeAll(Collection<?> c)
- 
- Specified by:
- removeAllin interface- Collection<E>
 
- 
 
retainAll
public boolean retainAll(Collection<?> c)
- 
- Specified by:
- retainAllin interface- Collection<E>
 
- 
 
size
public int size()
- 
- Specified by:
- sizein interface- Collection<E>
 
- 
 
toArray
public Object[] toArray()
- 
- Specified by:
- toArrayin interface- Collection<E>
 
- 
 
toArray
public <T> T[] toArray(T[] a)
- 
- Specified by:
- toArrayin interface- Collection<E>
 
- 
 
toString
public String toString()
- 
- Overrides:
- toStringin class- Object
 
- 
 
equals
public boolean equals(Object o)
- 
- Specified by:
- equalsin interface- Collection<E>
- Overrides:
- equalsin class- Object
 
- 
 
hashCode
public int hashCode()
- 
- Specified by:
- hashCodein interface- Collection<E>
- Overrides:
- hashCodein class- Object
 
- 
 
Copyright (c) 2006 C. Scott Ananian