⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 searchresult.java

📁 自己写的一个struts+spring+hibernate测试程序
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -