📄 listchunk.java
字号:
package com.eline.common.taglib;
import java.io.Serializable;
import java.util.Collection;
public class ListChunk implements Serializable {
private static final long serialVersionUID = 3166326584804110541L;
private Collection item;
private int totalRecords;
public Collection getItem() {
return item;
}
public void setItem(Collection item) {
this.item = item;
}
public int getTotalRecords() {
return totalRecords;
}
public void setTotalRecords(int totalRecords) {
this.totalRecords = totalRecords;
}
public int getCount() {
if (item == null)
return -1;
else
return item.size();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -