public interface IAppendableDataSource<T> extends IDataSource<T>
IDataSource
interface with methods necessary to support
dynamically adding data to the providerIDataSource.IQuery, IDataSource.IQueryResult<T>
Modifier and Type | Method and Description |
---|---|
void |
deleteRow(long index,
T item)
Function for deleting an item from the specified index of the result data
|
void |
insertRow(long index,
T item)
Function for appending an item to the end of the result data
|
model, query
void insertRow(long index, T item)
index
- the index value to insert the new Item intoitem
- Item to append to the end of the result datavoid deleteRow(long index, T item)
index
- the index value to delete the Item fromitem
- Item to be deletedCopyright © 2015. All rights reserved.