?? page.java
字號:
/*
* Created on 2004-9-28
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package oa.sys;
import java.util.*;
/**
****************************************************
*類名稱: #Page<br>
*類功能: 分頁解決方案<br>
*創建: 白偉明 2004年9月28日<br>
****************************************************
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class Page {
public int curPage;//當前頁
public int maxPage;//最大頁
public int maxRowCount;//最大行
public int rowsPerPage=5;//每頁行
public Collection coll=null;
public Page(){
}
/***************************************************
*函數名稱: getCountPage()<br>
*函數功能: 獲取總頁數<br>
*返回值: 無<br>
*參數說明: 無<br>
*創建: 白偉明 2004年9月28日
****************************************************/
public void getCountPage(){
if(this.maxRowCount%this.rowsPerPage==0){
this.maxPage=this.maxRowCount/this.rowsPerPage;
}else{
this.maxPage=this.maxRowCount/this.rowsPerPage+1;
}
}
public Collection getResult(){
return this.coll;
}
public Page(Contact contact)throws Exception{
this.maxRowCount=contact.getCount();
this.coll=contact.getResult();
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -