Class CheckedList<T>

java.lang.Object
eu.bandm.tools.umod.runtime.CheckedList<T>
All Implemented Interfaces:
Serializable, Iterable<T>, Collection<T>, List<T>
Direct Known Subclasses:
CheckedListPlus

public class CheckedList<T> extends Object implements List<T>, Serializable
Implements a List which is strict in all its elements. The implementation is done by delegation to some peer object from a predefined java runtime class. The kind of implementation (linked list or array list) can be selected by a parameter to the constructor.
See Also: