Interface PagingLoadConfig
-
- All Superinterfaces:
ListLoadConfig
,Serializable
- All Known Subinterfaces:
FilterPagingLoadConfig
- All Known Implementing Classes:
FilterPagingLoadConfigBean
,PagingLoadConfigBean
public interface PagingLoadConfig extends ListLoadConfig
A ListLoadConfig with support for limit and offset values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getLimit()
The number of records being requested.int
getOffset()
The offset for the first record to retrieve.void
setLimit(int limit)
Sets the limit.void
setOffset(int offset)
Sets the offset.-
Methods inherited from interface com.sencha.gxt.data.shared.loader.ListLoadConfig
getSortInfo, setSortInfo
-
-
-
-
Method Detail
-
setLimit
void setLimit(int limit)
Sets the limit.- Parameters:
limit
- the limit
-
setOffset
void setOffset(int offset)
Sets the offset.- Parameters:
offset
- the offset
-
getLimit
int getLimit()
The number of records being requested.- Returns:
- the number of records
-
getOffset
int getOffset()
The offset for the first record to retrieve.- Returns:
- the offset of the first record
-
-