Class ArrayListWithChangeIndex<T>

java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList<T>
org.eclnt.jsfserver.util.ArrayListWithChangeIndex<T>
All Implemented Interfaces:
Serializable, Cloneable, Iterable<T>, Collection<T>, List<T>, RandomAccess, IListWithChangeIndex<T>

public class ArrayListWithChangeIndex<T> extends ArrayList<T> implements IListWithChangeIndex<T>, Serializable
Array list that is a direct extension of ArrayList. Every time the array is updated through a corresponding method (e.g. add()), then the change listener is called - so that the change listener gets notified.
See Also: