T
- public class ListDataProvider<T extends Serializable> extends Object implements IDataProvider<T>
DataView
. The only requirement is that either list items
must be serializable or model(Object) needs to be overridden to provide the proper model
implementation.Constructor and Description |
---|
ListDataProvider()
Constructs an empty provider.
|
ListDataProvider(List<T> list) |
Modifier and Type | Method and Description |
---|---|
protected List<T> |
getData()
Subclass to lazy load the list
|
Iterator<T> |
iterator(long first,
long count)
Gets an iterator for the subset of total data
|
IModel<T> |
model(T object)
Callback used by the consumer of this data provider to wrap objects retrieved from
IDataProvider.iterator(long, long) with a model (usually a detachable one). |
long |
size()
Gets total number of items in the collection represented by the DataProvider
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
detach
public ListDataProvider()
public Iterator<T> iterator(long first, long count)
IDataProvider
iterator
in interface IDataProvider<T extends Serializable>
first
- first row of datacount
- minimum number of elements to retrievepublic long size()
IDataProvider
size
in interface IDataProvider<T extends Serializable>
public IModel<T> model(T object)
IDataProvider
IDataProvider.iterator(long, long)
with a model (usually a detachable one).model
in interface IDataProvider<T extends Serializable>
object
- the object that needs to be wrappedCopyright © 2006–2022 Apache Software Foundation. All rights reserved.