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

📄 gbs_mifform.java

📁 对日软件外包 为东芝做的一个全球商业管理系统
💻 JAVA
字号:
// Created by Xslt generator for Eclipse.
// XSL :  not found (java.io.FileNotFoundException:  (Bad file descriptor))
// Default XSL used : easystruts.jar$org.easystruts.xslgen.JavaClass.xsl

package ACTION;

import java.util.ArrayList;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts.action.ActionMapping;

import COMMON.BaseActionForm;
/** 
 * GBS_MifForm.java created by EasyStruts - XsltGen.
 * http://easystruts.sf.net
 * created on 08-10-2004
 * 
 * XDoclet definition:
 * @struts:form name="GBS_MifForm"
 */
public class GBS_MifForm extends BaseActionForm {

	// --------------------------------------------------------- Instance Variables
	/** strCustomerName property */
	private String customerName = "";
	/** strCustomerId property */
	private String customerId = "";
	/** productCategory property */
	private String productCategory = "";
	/** countryCode property */
	private String countryCode = "";
	/** subsidiaryCode property */
	private String subsidiaryCode = "";
	/** recordCount property */
	private String recordCount = "";
	/** lstMifDetail property */
	private ArrayList dataList;

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

	/** 
	 * Returns the strCustomerName.
	 * @return String
	 */
	public String getCustomerName() {
		return customerName;
	}

	/** 
	 * Set the customerName.
	 * @param customerName The customerName to set
	 */
	public void setCustomerName(String customerName) {
		this.customerName = customerName;
	}

	/** 
	 * Returns the customerId.
	 * @return String
	 */
	public String getCustomerId() {
		return customerId;
	}

	/** 
	 * Set the customerId.
	 * @param customerId The customerId to set
	 */
	public void setCustomerId(String customerId) {
		this.customerId = customerId;
	}
	
	/** 
	 * Returns the productCategory.
	 * @return String
	 */
	public String getProductCategory() {
		return productCategory;
	}
	
	/** 
	 * Set the productCategory.
	 * @param productCategory The productCategory to set
	 */
	public void setProductCategory(String productCategory) {
		this.productCategory = productCategory;
	}
	
	/** 
	 * Returns the countryCode.
	 * @return String
	 */
	public String getCountryCode() {
		return countryCode;
	}
	
	/** 
	 * Set the countryCode.
	 * @param countryCode The countryCode to set
	 */
	public void setCountryCode(String countryCode) {
		this.countryCode = countryCode;
	}
	
	/** 
	 * Returns the subsidiaryCode.
	 * @return String
	 */
	public String getSubsidiaryCode() {
		return subsidiaryCode;
	}

	/** 
	 * Set the subsidiaryCode.
	 * @param subsidiaryCode The subsidiaryCode to set
	 */
	public void setSubsidiaryCode(String subsidiaryCode) {
		this.subsidiaryCode = subsidiaryCode;
	}

	/** 
	 * Returns the recordCount.
	 * @return String
	 */
	public String getRecordCount() {
		return recordCount;
	}

	/** 
	 * Set the recordCount.
	 * @param recordCount The recordCount to set
	 */
	public void setRecordCount(String recordCount) {
		this.recordCount = recordCount;
	}
	
	/** 
	 * Returns the dataList.
	 * @return List
	 */
	public ArrayList getDataList() {
		return dataList;
	}

	/** 
	 * Set the dataList.
	 * @param dataList The dataList to set
	 */
	public void setDataList( ArrayList dataList ) {
		this.dataList = dataList;
	}	
	/**
	  * Method reset
	  * @param mapping
	  * @param request
	  */
	 public void reset(ActionMapping mapping, HttpServletRequest request) {
	   customerName = "";
	   customerId = "";
	   productCategory = "";
	   countryCode = "";
	   subsidiaryCode = "";
	   recordCount = "";
	   dataList = null;
	   super.reset( mapping, request );
	 }
}

⌨️ 快捷键说明

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