Class to help pagination when dealing with lists.
The class will attempt to use java.util.List.subList(int,int)
to index into the list for the appropriate page.
If the list does not contain enough elements to support the sub list, then the first pageSize
elements will be returned.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|