Class DataList<T>

java.lang.Object
com.storedobject.vaadin.DataList<T>
Type Parameters:
T - Type of data in the list.
All Implemented Interfaces:
Iterable<T>, Collection<T>, List<T>, SequencedCollection<T>

public class DataList<T> extends Object implements List<T>
A list data structure with a "refresh" listener. The refresh methods of the listeners (DataList.RefreshListener) are called whenever list is changed by adding/deleting/updating items.

This class may be used instead of normal List if you want to use it as data for ListGrid. The same instance may be used in multiple ListGrids and all grids will be simultaneously updated when data is updated programmatically.

Author:
Syam