Class CollectionDecorator<E>

java.lang.Object
com.globalmentor.collections.CollectionDecorator<E>
Type Parameters:
E - The type of element contained in the collection.
All Implemented Interfaces:
Iterable<E>, Collection<E>
Direct Known Subclasses:
AbstractConverterCollection, ListDecorator

public class CollectionDecorator<E> extends Object implements Collection<E>
A collection that wraps an existing collection, providing access through the Collection interface.
Author:
Garret Wilson