Class FreezableArrayList<ITEM>

All Implemented Interfaces:
Serializable, Cloneable, Iterable<ITEM>, Collection<ITEM>, List<ITEM>, RandomAccess

public class FreezableArrayList<ITEM> extends ListenableArrayList<ITEM>
An array list which can be frozen to disallow further edits. After freezing, edit operations will throw UnsupportedOperationException. Freezable lists may optionally allow new items to be added to the end of the list also after freeze.
Author:
bratseth
See Also: