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

📄 gbs_priceedithardwarepriceform.java

📁 对日软件外包 为东芝做的一个全球商业管理系统
💻 JAVA
字号:

package ACTION;

//import org.apache.struts.action.ActionForm;
import java.util.ArrayList;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts.action.ActionMapping;

import COMMON.BaseActionForm;

/**
 * public class GBS_PriceEditHardwarePriceForm extends BaseActionForm
 * created on 07-30-2004
 * @author   wxf
 * @version  1.0
 */
public class GBS_PriceEditHardwarePriceForm extends BaseActionForm {

  // --------------------------------------------------------- Instance Variables
  
  
  /** memberName countryValueList */
  private ArrayList countryValueList;
  
  /** memberName countryLableList */
  private ArrayList countryLableList;
  
  /** memberName countryCode */
  private String countryCode;
  
  /** memberName rateUS */
  private String rateUS;
  
  /** memberName rateEURO */
  private String rateEURO;
  
  /** memberName round */
  private String round;
  
  /** memberName localCurrencyKeyList */
  private ArrayList localCurrencyKeyList;
  
  /** memberName localCurrencyList */
  private ArrayList localCurrencyNameList;
  
  /** memberName localCurrency */
  private String localCurrency;
  
  /** memberName dataList */
  private ArrayList dataList ;
  
  /** memberName productID */
  private String[] productID;
  
  /** memberName productName */
  private String[] productName;
  
  /** memberName localPrice */
  private String[] localPrice;
  
  /** memberName USPrice */
  private String[] USPrice;
  
  /** memberName EUROPrice */
  private String[] EUROPrice;
  
  /** memberName kindCode */
  private String[] kindCode;

  /** memberName productCategory */
  private String[] productCategory;
  
  /** memberName localCurrencyName */
  private String localCurrencyName;
  
 
  public void reset(ActionMapping mapping, HttpServletRequest request) {
	countryValueList = new ArrayList();
	countryLableList = new ArrayList();
	countryCode = "";
	rateUS = "";
	rateEURO = "";
	round ="";
	localCurrencyKeyList = new ArrayList();
	localCurrencyNameList =new ArrayList();
	localCurrency ="";
	dataList= new ArrayList();
	productID = new String[]{""};
	localPrice = new String[]{""};
	USPrice = new String[]{""};
	EUROPrice = new String[]{""};
	kindCode = new String[]{""};
	productCategory= new String[]{""};
	localCurrencyName = "";
	super.reset(mapping,request);
  }
	
  /**
   * Returns the countryValueList.
   * @return List
   */
  public ArrayList getCountryValueList(){
	return this.countryValueList;
  }
  /**
   * Set the countryValueList.
   * @param countryValueList The countryValueList to set
   */
  public void setCountryValueList(ArrayList countryValueList ){
	this.countryValueList = countryValueList;
  }
  
  /**
   * Returns the countryLableList.
   * @return List
   */
  public ArrayList getCountryLableList(){
	return this.countryLableList;
  }
  /**
   * Set the countryLableList.
   * @param countryLableList The countryLableList to set
   */
  public void setCountryLableList(ArrayList countryLableList ){
	this.countryLableList = countryLableList;
  }

  /**
   * Returns the countryCode.
   * @return String
   */
  public String getCountryCode(){
	return this.countryCode;
  }
  /**
   * Set the countryCode.
   * @param countryCode The countryCode to set
   */
  public void setCountryCode(String countryCode ){
	this.countryCode = countryCode;
  }

  
  /**
   * Returns the rateUS.
   * @return String
   */
  
  public String getRateUS(){
	return this.rateUS;
  }
  /**
   * Set the rateUS.
   * @param rateUS The rateUS to set
   */
  public void setRateUS(String rateUS ){
	this.rateUS = rateUS;
  }
  /**
   * Returns the rateEURO.
   * @return String
   */
  public String getRateEURO(){
	return this.rateEURO;
  }
  /**
   * Set the rateEURO.
   * @param rateEURO The rateEURO to set
   */
  public void setRateEURO(String rateEURO ){
	this.rateEURO = rateEURO;
  }
  /**
   * Returns the round.
   * @return String
   */
  public String getRound(){
	return this.round;
  }
  /**
   * Set the round.
   * @param round The round to set
   */
  public void setRound(String round ){
	this.round = round;
  }
  
  
  
  /**
   * Returns the localCurrencyKeyList.
   * @return List
   */
  public ArrayList getLocalCurrencyKeyList(){
	return this.localCurrencyKeyList;
  }
  /**
   * Set the localCurrencyKeyList.
   * @param localCurrencyKeyList The localCurrencyKeyList to set
   */
  public void setLocalCurrencyKeyList( ArrayList  localCurrencyKeyList ){
	this.localCurrencyKeyList = localCurrencyKeyList;
  }
  /**
   * Returns the localCurrencyNameList.
   * @return List
   */
  public ArrayList getLocalCurrencyNameList(){
	return this.localCurrencyNameList;
  }
  /**
   * Set the localCurrencyNameList.
   * @param localCurrencyNameList The localCurrencyNameList to set
   */
  public void setLocalCurrencyNameList( ArrayList  localCurrencyNameList ){
	this.localCurrencyNameList = localCurrencyNameList;
  }
  
  /**
   * Returns the localCurrency.
   * @return String
   */
  public String getLocalCurrency(){
	return this.localCurrency;
  }
  /**
   * Set the localCurrency.
   * @param localCurrency The localCurrency to set
   */
  public void setLocalCurrency(String localCurrency ){
	this.localCurrency = localCurrency;
  }

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

  /**
   * Returns the productID.
   * @return String[]
   */
  public String[] getProductID(){
	return this.productID;
  }
  /**
   * Set the productID.
   * @param productID The productID to set
   */
  public void setProductID(String[] productID ){
	this.productID = productID;
  }
  /**
   * Returns the productName.
   * @return String[]
   */
  public String[] getProductName(){
	return this.productName;
  }
  /**
   * Set the productName.
   * @param productName The productName to set
   */
  public void setProductName(String[] productName ){
	this.productName = productName;
  }
  /**
   * Returns the localPrice.
   * @return String[]
   */
  public String[] getLocalPrice(){
	return this.localPrice;
  }
  /**
   * Set the localPrice.
   * @param localPrice The localPrice to set
   */
  public void setLocalPrice(String[] localPrice ){
	this.localPrice = localPrice;
  }
  /**
   * Returns the USPrice.
   * @return String[]
   */
  public String[] getUSPrice(){
	return this.USPrice;
  }
  /**
   * Set the USPrice.
   * @param USPrice The USPrice to set
   */
  public void setUSPrice(String[] USPrice ){
	this.USPrice = USPrice;
  }
  
  /**
   * Returns the EUROPrice.
   * @return String[]
   */
  public String[] getEUROPrice(){
	return this.EUROPrice;
  }
  /**
   * Set the EUROPrice.
   * @param EUROPrice The EUROPrice to set
   */
  public void setEUROPrice(String[] EUROPrice ){
	this.EUROPrice = EUROPrice;
  }
  /**
   * Returns the kindCode.
   * @return String[]
   */
  public String[] getKindCode(){
	return this.kindCode;
  }
  /**
   * Set the kindCode.
   * @param kindCode The kindCode to set
   */
  public void setKindCode(String[] kindCode ){
	this.kindCode = kindCode;
  }
  /**
   * Returns the productCategory.
   * @return String[]
   */
  public String[] getProductCategory(){
	return this.productCategory;
  }
  /**
   * Set the productCategory.
   * @param productCategory The productCategory to set
   */
  public void setProductCategory(String[] productCategory ){
	this.productCategory = productCategory;
  }
  
/**
 * @return
 */
public String getLocalCurrencyName() {
	return localCurrencyName;
}

/**
 * @param string
 */
public void setLocalCurrencyName(String string) {
	localCurrencyName = string;
}

}

⌨️ 快捷键说明

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