📄 pagerform.java
字号:
package com.pegasus.framework.component.taglib.test;
import java.util.ArrayList;
import java.util.List;
import org.apache.struts.action.ActionForm;
/**
* MyEclipse Struts Creation date: 06-02-2007 XDoclet definition:
*
* @struts.form name="functionForm"
*/
public class PagerForm extends ActionForm {
private List list = new ArrayList();
private String pageNo;
private String fectchSize;
private String totalObjectCount;
private String totalPageCount;
/**
* @return Returns the fectchSize.
*/
public String getFectchSize() {
return fectchSize;
}
/**
* @param fectchSize The fectchSize to set.
*/
public void setFectchSize(String fectchSize) {
this.fectchSize = fectchSize;
}
/**
* @return Returns the pageNo.
*/
public String getPageNo() {
return pageNo;
}
/**
* @param pageNo The pageNo to set.
*/
public void setPageNo(String pageNo) {
this.pageNo = pageNo;
}
/**
* @return Returns the totalObjectCount.
*/
public String getTotalObjectCount() {
return totalObjectCount;
}
/**
* @param totalObjectCount The totalObjectCount to set.
*/
public void setTotalObjectCount(String totalObjectCount) {
this.totalObjectCount = totalObjectCount;
}
/**
* @return Returns the totalPageCount.
*/
public String getTotalPageCount() {
return totalPageCount;
}
/**
* @param totalPageCount The totalPageCount to set.
*/
public void setTotalPageCount(String totalPageCount) {
this.totalPageCount = totalPageCount;
}
/**
* @return Returns the list.
*/
public List getList() {
return list;
}
/**
* @param list The list to set.
*/
public void setList(List list) {
this.list = list;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -