gbs_productavailabilitylistsubform.java

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

JAVA
204
字号

/** 
 * method GBS_ProductAvailabilityListSubForm.java
 * created on 08-02-2004
 * 
 * @author   GXK
 * @version  1.0
 */

package ACTION;

import java.util.ArrayList;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts.action.ActionMapping;

import COMMON.BaseActionForm;

public class GBS_ProductAvailabilityListSubForm extends BaseActionForm {

	// --------------------------------------------------------- Instance Variables

	/** handlingList property */
	private ArrayList handlingList = new ArrayList();

	/** controlCountry property */
	private ArrayList controlCountryList = new ArrayList();

	/** product property */
	private String[] product = null;

	/** country property */
	private String[] country = null;

	/** selectHandling property */
	private String[] selectHandling = null;

	/** downloadProduct property */
	private String downloadProduct = "";

	private String[] controlCountry = null;

	private ArrayList firstDataList = null;

	// --------------------------------------------------------- Methods

	/** 
	 * Method reset
	 * @param ActionMapping mapping
	 * @param HttpServletRequest request
	 */
	public void reset(ActionMapping mapping, HttpServletRequest request) {

		country = null;
		product = null;
		downloadProduct = "";
		selectHandling = null;
		controlCountry = null;
		handlingList = new ArrayList();
		controlCountryList = new ArrayList();
		firstDataList = null;
		super.reset(mapping, request);
	}

	/** 
	 * Returns the handlingList.
	 * @return ArrayList
	 */
	public ArrayList getHandlingList() {
		return handlingList;
	}

	/** 
	 * Set the handlingList.
	 * @param handlingList The handlingList to set
	 */
	public void setHandlingList(ArrayList handlingList) {
		this.handlingList = handlingList;
	}

	/** 
	 * Returns the controlCountry.
	 * @return ArrayList
	 */
	public ArrayList getControlCountryList() {
		return controlCountryList;
	}

	/** 
	 * Set the controlCountry.
	 * @param controlCountry The controlCountry to set
	 */
	public void setControlCountryList(ArrayList controlCountryList) {
		this.controlCountryList = controlCountryList;
	}

	/** 
	 * Returns the product.
	 * @return String[]
	 */
	public String[] getProduct() {
		return product;
	}

	/** 
	 * Set the product.
	 * @param product The product to set
	 */
	public void setProduct(String[] product) {
		this.product = product;
	}

	/** 
	 * Returns the country.
	 * @return String
	 */
	public String[] getCountry() {
		return country;
	}

	/** 
	 * Set the country.
	 * @param country The country to set
	 */
	public void setCountry(String[] country) {
		this.country = country;
	}

	/** 
	 * Returns the selectHandling.
	 * @return String
	 */
	public String[] getSelectHandling() {
		return selectHandling;
	}

	/** 
	 * Set the selectHandling.
	 * @param selectHandling The selectHandling to set
	 */
	public void setSelectHandling(String[] selectHandling) {
		this.selectHandling = selectHandling;
	}

	/** 
	 * Returns the downloadProduct.
	 * @return String
	 */
	public String getdownloadProduct() {
		return downloadProduct;
	}

	/** 
	 * Set the downloadProduct.
	 * @param downloadProduct The downloadProduct to set
	 */
	public void setdownloadProduct(String downloadProduct) {
		this.downloadProduct = downloadProduct;
	}
	/**
	 * @return
	 */
	public String[] getControlCountry() {
		return controlCountry;
	}

	/**
	 * @return
	 */
	public String getDownloadProduct() {
		return downloadProduct;
	}

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

	/**
	 * @param string
	 */
	public void setDownloadProduct(String string) {
		downloadProduct = string;
	}

	/**
	 * @return
	 */
	public ArrayList getFirstDataList() {
		return firstDataList;
	}

	/**
	 * @param list
	 */
	public void setFirstDataList(ArrayList list) {
		firstDataList = list;
	}

}

⌨️ 快捷键说明

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