?? ipagebean.java
字號(hào):
package com.david.util;
public interface IPageBean {
//當(dāng)前頁
public void setCurrentPage(int currentPage);
//每頁條目數(shù)
public void setEveryItems(int everyItems);
//總記錄數(shù)
public void setAllItems(int allItems);
// 總頁數(shù)
public void setAllPage(int allpage);
//當(dāng)前頁
public int getCurrentPage();
//每頁條目數(shù)
public int getEveryItems();
//總記錄數(shù)
public int getAllItems();
//總頁數(shù)
public int getAllPage();
//是否有下一頁
public boolean hasNextPage();
//是否有上一頁
public boolean hasPreviousPage();
//是否有尾頁
public boolean hasLastPage();
//是否有首頁
public boolean hasFirstPage();
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -