Methods Summary |
---|
public java.util.Collection | getList()
return list;
|
public int | getSize()
return list.size( );
|
public int | getStartOfNextPage()
return start + list.size( );
|
public int | getStartOfPreviousPage()
return Math.max( start - list.size( ), 0 );
|
public boolean | isNextPageAvailable()
return hasNext;
|
public boolean | isPreviousPageAvailable()
return start > 0;
|