`
microsystems
  • 浏览: 7112 次
最近访客 更多访客>>
社区版块
存档分类
最新评论

SelectReaderForm

阅读更多
/*

* All rights reserved.
*
* $Id: SelectReaderForm.java,v 1.2 2004/02/17 06:06:06 zg Exp $
*/

package cn.com.detech.deinfo.communion.web;

import java.util.ArrayList;

import cn.com.detech.struts.action.DEBaseForm;

/**
* 传阅人名单选择FormBean类
* NOTE: This source is automatically generated please do not modify this file.  Either subclass or
*       remove the record in src/records/definitions.
* @author 曾刚
*/
public class SelectReaderForm extends DEBaseForm
{
    private ArrayList deptList = new ArrayList();
    private ArrayList groupList = new ArrayList();
    private ArrayList empList = new ArrayList();
    private ArrayList readerList = new ArrayList();
       
    private String selDeptID = "0";
    private String selGroupID = "0";
    private String[] selectableIDStr;
    private String[] selectedIDStr;
    private String readerNameStr;
   
    private String returnName = "";          //用于在页面上向传阅编辑窗口的reader域赋值
   
    public void reset() {
//        deptList = new ArrayList();
//        groupList = new ArrayList();
//        empList = new ArrayList();
//        readerList = new ArrayList();
//       
        selDeptID = "0";
        selGroupID = "0";
//        String[] as = new String[1];
//        as[0] = "";
//        selectableIDStr = as;
//        selectedIDStr = as;       
        returnName = "";
        readerNameStr = "";
    }
   
    public void resetForm() {
        deptList = new ArrayList();
        groupList = new ArrayList();
        empList = new ArrayList();
        readerList = new ArrayList();
   
        selDeptID = "0";
        selGroupID = "0";
        String[] as = new String[1];
        as[0] = "";
        selectableIDStr = as;
        selectedIDStr = as;
        returnName = "";
        readerNameStr = "";
    }
       
/**
* @return
*/
public ArrayList getDeptList()
{
return deptList;
}

/**
* @return
*/
public ArrayList getEmpList()
{
return empList;
}

/**
* @return
*/
public ArrayList getGroupList()
{
return groupList;
}

/**
* @return
*/
public String getSelDeptID()
{
return selDeptID;
}

/**
* @return
*/
public String getSelGroupID()
{
return selGroupID;
}

/**
* @param list
*/
public void setDeptList(ArrayList list)
{
deptList = list;
}

/**
* @param list
*/
public void setEmpList(ArrayList list)
{
empList = list;
}

/**
* @param list
*/
public void setGroupList(ArrayList list)
{
groupList = list;
}

/**
* @param string
*/
public void setSelDeptID(String string)
{
selDeptID = string;
}

/**
* @param string
*/
public void setSelGroupID(String string)
{
selGroupID = string;
}

/**
* @return
*/
public String[] getSelectableIDStr()
{
return selectableIDStr;
}

/**
* @return
*/
public String[] getSelectedIDStr()
{
return selectedIDStr;
}

/**
* @param strings
*/
public void setSelectableIDStr(String[] strings)
{
selectableIDStr = strings;
}

/**
* @param strings
*/
public void setSelectedIDStr(String[] strings)
{
selectedIDStr = strings;
}

/**
* @return
*/
public String getReturnName()
{
return returnName;
}

/**
* @param string
*/
public void setReturnName(String string)
{
returnName = string;
}

/**
* @return
*/
public String getReaderNameStr()
{
return readerNameStr;
}

/**
* @param string
*/
public void setReaderNameStr(String string)
{
readerNameStr = string;
}

/**
* @return
*/
public ArrayList getReaderList()
{
return readerList;
}

/**
* @param list
*/
public void setReaderList(ArrayList list)
{
readerList = list;
}

}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics