Package org.uberfire.paging
Class PageResponse<T extends AbstractPageRow>
- java.lang.Object
-
- org.uberfire.paging.PageResponse<T>
-
@Portable public class PageResponse<T extends AbstractPageRow> extends Object
A Page of data for display in a PagedTable
-
-
Constructor Summary
Constructors Constructor Description PageResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<T>getPageRowList()intgetStartRowIndex()intgetTotalRowSize()booleanisFirstPage()booleanisLastPage()booleanisTotalRowSizeExact()voidsetLastPage(boolean lastPage)voidsetPageRowList(List<T> assetPageRowList)voidsetStartRowIndex(int startRowIndex)voidsetTotalRowSize(int totalRowSize)voidsetTotalRowSizeExact(boolean totalRowSizeExact)
-
-
-
Method Detail
-
getStartRowIndex
public int getStartRowIndex()
-
setStartRowIndex
public void setStartRowIndex(int startRowIndex)
-
getTotalRowSize
public int getTotalRowSize()
-
setTotalRowSize
public void setTotalRowSize(int totalRowSize)
-
isFirstPage
public boolean isFirstPage()
-
isLastPage
public boolean isLastPage()
-
setLastPage
public void setLastPage(boolean lastPage)
-
isTotalRowSizeExact
public boolean isTotalRowSizeExact()
-
setTotalRowSizeExact
public void setTotalRowSizeExact(boolean totalRowSizeExact)
-
-