searchresult.java

来自「自己写的一个struts+spring+hibernate测试程序」· Java 代码 · 共 47 行

JAVA
47
字号
package com.common;

import java.util.ArrayList;
import java.util.List;

/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2006</p>
 * <p>Company: </p>
 * @author tommy.zeng
 * @version 1.0
 */
public class SearchResult {
    int count;
    List resultList;
    public SearchResult()
    {
    	this.count=0;
    	this.resultList=new ArrayList();
    }
    /**
     * @return Returns the count.
     */
    public int getCount() {
        return count;
    }
    /**
     * @param count The count to set.
     */
    public void setCount(int count) {
        this.count = count;
    }
    /**
     * @return Returns the resultList.
     */
    public List getResultList() {
        return resultList;
    }
    /**
     * @param resultList The resultList to set.
     */
    public void setResultList(List resultList) {
        this.resultList = resultList;
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?