Package com.inmethod.grid
Class DataProviderAdapter<T,S>
java.lang.Object
com.inmethod.grid.DataProviderAdapter<T,S>
- Type Parameters:
T- row/item model object type
- All Implemented Interfaces:
IDataSource<T>,Serializable,IDetachable,IClusterable
- Direct Known Subclasses:
AppendableDataProviderAdapter
Adapter that allows using a wicket extension
IDataProvider in an AbstractGrid.
The adapter also supports sortable data providers.- Author:
- Matej Knopp
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.inmethod.grid.IDataSource
IDataSource.IQuery, IDataSource.IQueryResult<T> -
Constructor Summary
ConstructorsConstructorDescriptionDataProviderAdapter(IDataProvider<T> dataProvider) Creates a newDataProviderAdapterinstance. -
Method Summary
Modifier and TypeMethodDescriptionvoiddetach()Allows wrapping the object in a model which will be set as model of the appropriate row.voidquery(IDataSource.IQuery query, IDataSource.IQueryResult<T> result) Implementation of this method should load subset of the data specified byquery.getFrom()andquery.getCount().
-
Constructor Details
-
DataProviderAdapter
Creates a newDataProviderAdapterinstance.- Parameters:
dataProvider-IDataProviderinstance
-
-
Method Details
-
detach
public void detach()- Specified by:
detachin interfaceIDetachable
-
model
Allows wrapping the object in a model which will be set as model of the appropriate row. In most cases the model should be detachable.- Specified by:
modelin interfaceIDataSource<T>- Returns:
- model that can be used to access the object
-
query
Implementation of this method should load subset of the data specified byquery.getFrom()andquery.getCount(). Also if the total item count can be determined, it should be passed toresult.- Specified by:
queryin interfaceIDataSource<T>- Parameters:
query- Specified the amount and position of items to be queriedresult- Allows to set the total item count and result items
-