JAvaではクエリした結果セットListをページング表示する
1166 ワード
public class ListSub{
/**
*
*/
private int page = 1;
/**
*
*/
private int rows = 15;
/**
*
*/
private int total;
/**
* @return the page
*/
public int getPage() {
return page;
}
/**
* @param page the page to set
*/
public void setPage(int page) {
this.page = page;
}
/**
* @return the rows
*/
public int getRows() {
return rows;
}
/**
* @param rows the rows to set
*/
public void setRows(int rows) {
this.rows = rows;
}
/**
* @return the total
*/
public int getTotal() {
return total;
}
/**
* @param total the total to set
*/
public void setTotal(int total) {
this.total = total;
}
/**
* list
*
* @return
*/
private List ListSplit(List list) {
List newList=null;
total=list.size();
newList=list.subList(rows*(page-1), ((rows*page)>total?total:(rows*page)));
return newList;
}
}