gbs_memberlistform.java

来自「对日软件外包 为东芝做的一个全球商业管理系统」· Java 代码 · 共 281 行

JAVA
281
字号
package ACTION;

/** 
 * method GBS_MemberListForm.java
 * created on 08-02-2004
 * @author   XUSHENG
 * @version  1.0
 */
import java.util.ArrayList;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts.action.ActionMapping;

import COMMON.BaseActionForm;

public class GBS_MemberListForm extends BaseActionForm {

  /** memberName property */
  private String strMemberName;

  /** dept property */
  private String strDept;

  /** email property */
  private String strEmail;

  /** telephone property */
  private String strTelephone;

  /** subsidiaryName property */
  private String strSubsidiaryName;
  
  /** sidiaryName property */////
  private String strSubsidiaryNameDept;

  /** bossName property */
  private String strBossName;
  
  /** bossEmail property */
  private String strBossEmail;


  /** lstMasterList property */
  private ArrayList lstMemberCommittee = new ArrayList();
  private ArrayList lstMemberSupport = new ArrayList();
  private ArrayList lstMemberOperation = new ArrayList();
  private ArrayList lstMemberLocal = new ArrayList();
  private ArrayList lstMemberSubsidiary = new ArrayList();
  
  /**
   * Returns the lstMemberSubsidiary.
   * @return ArrayList
   */ 
  public ArrayList getMemberSubsidiary() {
	return lstMemberSubsidiary;
  }

  /**
   * Set the lstMemberSubsidiary.
   * @param lstMemberSubsidiary to set
   */
  public void setMemberSubsidiary(ArrayList lstMemberSubsidiary) {
	this.lstMemberSubsidiary = lstMemberSubsidiary;
  }
  
  /**
   * Returns the lstMemberCommittee.
   * @return ArrayList
   */
  public ArrayList getMemberCommittee() {
	return lstMemberCommittee;
  }

  /**
   * Set the lstMemberCommittee.
   * @param lstMemberCommittee to set
   */
  public void setMemberCommittee(ArrayList lstMemberCommittee) {
	this.lstMemberCommittee = lstMemberCommittee;
  }
  
  /**
   * Returns the lstMemberSupport.
   * @return ArrayList
   */
  public ArrayList getMemberSupport() {
	return this.lstMemberSupport;
  }

  /**
   * Set the lstMemberSupport.
   * @param lstMemberSupport to set
   */
  public void setMemberSupport(ArrayList lstMemberSupport) {
	this.lstMemberSupport = lstMemberSupport;
  }
  
  /**
   * Returns the lstMemberOperation.
   * @return ArrayList
   */
  public ArrayList getMemberOperation() {
	return lstMemberOperation;
  }

  /**
   * Set the lstMemberOperation.
   * @param lstMemberOperation to set
   */
  public void setMemberOperation(ArrayList lstMemberOperation) {
	this.lstMemberOperation = lstMemberOperation;
  }
  
  /**
   * Returns the lstMemberLocal.
   * @return ArrayList
   */
  public ArrayList getMemberLocal() {
	return this.lstMemberLocal;
  }

  /**
   * Set the memberName.
   * @param lstMemberLocal to set
   */
  public void setMemberLocal(ArrayList lstMemberLocal) {
	this.lstMemberLocal = lstMemberLocal;
  }

  
  /**
   * Returns the memberName.
   * @return String
   */
  public String getMemberName() {
	return strMemberName;
  }

  /**
   * Set the memberName.
   * @param memberName to set
   */
  public void setMemberName(String strMemberName) {
	this.strMemberName = strMemberName;
  }

  /**
   * Returns the dept.
   * @return String
   */
  public String getDept() {
	return strDept;
  }

  /**
   * Set the dept.
   * @param dept to set
   */
  public void setDept(String strDept) {
	this.strDept = strDept;
  }

  /**
   * Returns the email.
   * @return String
   */
  public String getEmail() {
	return strEmail;
  }

  /**
   * Set the email.
   * @param email  to set
   */
  public void setEmail(String strEmail) {
	this.strEmail = strEmail;
  }

  /**
   * Returns the telephone.
   * @return String
   */
  public String getTelephone() {
	return strTelephone;
  }

  /**
   * Set the telephone.
   * @param telephone to set
   */
  public void setTelephone(String strTelephone) {
	this.strTelephone = strTelephone;
  }

  /**
   * Returns the subsidiaryName.
   * @return String
   */
  public String getSubsidiaryNameDept() {
	return strSubsidiaryNameDept;
  }

  /**
   * Set the subsidiaryName.
   * @param subsidiaryName to set
   */
  public void setSubsidiaryNameDept(String strSubsidiaryNameDept) {
	this.strSubsidiaryNameDept = strSubsidiaryNameDept;
  }


  /**
   * Returns the sidiaryName.
   * @return String
   */
  public String getSubsidiaryName() {
	return strSubsidiaryName;
  }

  /**
   * Set the subsidiaryName.
   * @param subsidiaryName to set
   */
  public void setSubsidiaryName(String strSubsidiaryName) {
	this.strSubsidiaryName = strSubsidiaryName;
  }
  /**
   * Returns the bossName.
   * @return String
   */
  public String getBossName() {
	return strBossName;
  }

  /**
   * Set the bossName.
   * @param bossName to set
   */
  public void setBossNamen(String strBossName) {
	this.strBossName = strBossName;
  }
  /**
   * Returns the bossEmail.
   * @return String
   */
  public String getBossEmail() {
	return strBossEmail;
  }

  /**
   * Set the bossEmail.
   * @param bossEmail to set
   */
  public void setBossEmail(String strBossEmail) {
	this.strBossEmail = strBossEmail;
  }

  /**
   * Method reset
   * @param mapping
   * @param request
   */
  public void reset(ActionMapping mapping, HttpServletRequest request) {
	strMemberName = "";
	strDept = "";
	strEmail = "";
	strTelephone = "";
	strSubsidiaryName = "";
	strSubsidiaryNameDept = "";
	strBossName = "";
	strBossEmail = "";
	lstMemberCommittee = new ArrayList();
	lstMemberSupport = new ArrayList();
	lstMemberOperation = new ArrayList();
	lstMemberLocal = new ArrayList();
	lstMemberSubsidiary = new ArrayList();
	super.reset( mapping, request);
  }
}

⌨️ 快捷键说明

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