Interface IPageable
-
- All Superinterfaces:
org.apache.wicket.util.io.IClusterable,java.io.Serializable
- All Known Subinterfaces:
IPageableItems
- All Known Implementing Classes:
AbstractPageableView,DataView,DataViewBase,GridView,PageableListView
public interface IPageable extends org.apache.wicket.util.io.IClusterableComponents that implement this interface will be pageable, they should return the pagecount so that an object/component knows how many pages it can use for the setCurrentPage method. The PageableListView is one example that is Pageable. But also a Form could be pageable so that you can scroll to sets of records that you display in that form with any navigator you want.- Author:
- jcompagner
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetCurrentPage()longgetPageCount()Gets the total number of pages this pageable object has.voidsetCurrentPage(long page)Sets the a page that should be rendered (page number is zero-based)
-
-
-
Method Detail
-
getCurrentPage
long getCurrentPage()
- Returns:
- The current page that is or will be rendered (page number is zero-based)
-
setCurrentPage
void setCurrentPage(long page)
Sets the a page that should be rendered (page number is zero-based)- Parameters:
page- The page that should be rendered.
-
getPageCount
long getPageCount()
Gets the total number of pages this pageable object has.- Returns:
- The total number of pages this pageable object has
-
-