Package org.apache.tapestry5.grid
Interface GridPaginationModel
-
- All Known Implementing Classes:
GridPaginationModelImpl
public interface GridPaginationModel
Store pagination information, such as the current page, sort column, and sort ascending vs. descending.- Since:
- 5.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Integer
getCurrentPage()
java.lang.Boolean
getSortAscending()
java.lang.String
getSortColumnId()
void
setCurrentPage(java.lang.Integer currentPage)
void
setSortAscending(java.lang.Boolean sortAscending)
void
setSortColumnId(java.lang.String sortColumnId)
-
-
-
Method Detail
-
getSortColumnId
java.lang.String getSortColumnId()
-
setSortColumnId
void setSortColumnId(java.lang.String sortColumnId)
-
getSortAscending
java.lang.Boolean getSortAscending()
-
setSortAscending
void setSortAscending(java.lang.Boolean sortAscending)
-
getCurrentPage
java.lang.Integer getCurrentPage()
-
setCurrentPage
void setCurrentPage(java.lang.Integer currentPage)
-
-