|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.vaadin.client.widget.grid.datasources.ListDataSource<T>
public class ListDataSource<T>
A simple list based on an in-memory data source for simply adding a list of row pojos to the grid. Based on a wrapped list instance which supports adding and removing of items.
Usage:
ListDataSource<Integer> ds = new ListDataSource<Integer>(1, 2, 3, 4); // Add item to the data source ds.asList().add(5); // Remove item from the data source ds.asList().remove(3); // Add multiple items ds.asList().addAll(Arrays.asList(5, 6, 7));
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from interface com.vaadin.client.data.DataSource |
|---|
DataSource.RowHandle<T> |
| Constructor Summary | |
|---|---|
ListDataSource(java.util.List<T> datasource)
Constructs a new list data source. |
|
ListDataSource(T... rows)
Constructs a data source with a set of rows. |
|
| Method Summary | |
|---|---|
java.util.List<T> |
asList()
Gets the list that backs this datasource. |
void |
ensureAvailability(int firstRowIndex,
int numberOfRows)
Informs the data source that data for the given range is needed. |
DataSource.RowHandle<T> |
getHandle(T row)
Gets a DataSource.RowHandle of a row object in the cache. |
T |
getRow(int rowIndex)
Retrieves the data for the row at the given index. |
SelectAllHandler<T> |
getSelectAllHandler()
Returns a SelectAllHandler for this ListDataSource. |
int |
indexOf(T row)
Retrieves the index for given row object. |
void |
setDataChangeHandler(DataChangeHandler dataChangeHandler)
Sets a data change handler to inform when data is updated, added or removed. |
int |
size()
Returns the number of rows in the data source. |
void |
sort(java.util.Comparator<T> comparator)
Sort entire container according to a Comparator. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ListDataSource(java.util.List<T> datasource)
Note: Modifications to the original list will not be reflected in the
data source after the data source has been constructed. To add or remove
items to the data source after it has been constructed use
asList().
datasource - The list to use for providing the data to the gridpublic ListDataSource(T... rows)
asList()
rows - The rows to initially add to the data source| Method Detail |
|---|
public void ensureAvailability(int firstRowIndex,
int numberOfRows)
DataSource
This method triggers lazy loading of data if necessary. The change
handler registered using DataSource.setDataChangeHandler(DataChangeHandler)
is informed when new data has been loaded.
After any possible lazy loading and updates are done, the change handler is informed that new data is available.
ensureAvailability in interface DataSource<T>firstRowIndex - the index of the first needed rownumberOfRows - the number of needed rowspublic T getRow(int rowIndex)
DataSourcenull.
This method does not trigger loading of unavailable data.
DataSource.ensureAvailability(int, int) should be used to signal what data
will be needed.
getRow in interface DataSource<T>rowIndex - the index of the row to retrieve data for
null if no data is availablepublic int size()
DataSource
size in interface DataSource<T>public void setDataChangeHandler(DataChangeHandler dataChangeHandler)
DataSource
setDataChangeHandler in interface DataSource<T>dataChangeHandler - the data change handlerpublic java.util.List<T> asList()
Note: The list is not the same list as passed into the data source via the constructor.
public DataSource.RowHandle<T> getHandle(T row)
throws java.lang.IllegalStateException
DataSourceDataSource.RowHandle of a row object in the cache.
getHandle in interface DataSource<T>row - the row object for which to retrieve a row handle
null row handle of the given row object
java.lang.IllegalStateExceptionpublic void sort(java.util.Comparator<T> comparator)
Comparator.
comparator - a comparator object, which compares two data source entries
(beans/pojos)public int indexOf(T row)
Note: This method does not verify that the given row object exists at all in this DataSource.
row - the row object
-1 if row is not availablepublic SelectAllHandler<T> getSelectAllHandler()
SelectAllHandler for this ListDataSource.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||