gbs_priceconditionform.java

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

JAVA
232
字号

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_PriceConditionForm extends BaseActionForm
 * created on 07-30-2004
 * @author   wxf
 * @version  1.0
 */
public class GBS_PriceConditionForm extends BaseActionForm {

  // --------------------------------------------------------- Instance Variables
  /** memberName priceList */
  private ArrayList priceList ;
  
  /** memberName priceListCheched */
  private ArrayList priceListChecked;
  
  /** memberName price */
  private String[] price;
  

  /** memberName productCategoryList */
  private ArrayList productCategoryList;
  
  /** memberName productCategoryListChecked */
  private ArrayList productCategoryListChecked;
  
  /** memberName productCategory */
  private String[] productCategory;
  
  
  /** memberName countryList */
  private ArrayList countryList;
  
  /** memberName countryListChecked */
  private ArrayList countryListChecked;
  
  private String[] country;

  /** memberName CPCPrice search return data */
  private GBS_PriceCPCPriceListForm CPCData;
  
  /** memberName HardwarePrice search return data */
  private GBS_PriceHardwarePriceListForm hardwareData;
  
  
  
  public void reset(ActionMapping mapping, HttpServletRequest request) {
	priceList = new ArrayList();
	priceListChecked = new ArrayList();
	price = null;
	productCategoryList = new ArrayList();
	productCategoryListChecked= new ArrayList();
	productCategory = null;
	countryList = new ArrayList();
	countryListChecked= new ArrayList();
	country = null;
	CPCData =null;
	hardwareData =null;
	super.reset(mapping,request);
  }
  /**
   * Returns the priceList.
   * @return ArrayList
   */
  public ArrayList getPriceList(){
  	return this.priceList;
  }
  /**
   * Set the priceList.
   * @param priceList The priceList to set
   */
  public void setPriceList(ArrayList priceList ){
  	this.priceList = priceList;
  }
  /**
   * Returns the priceListChecked.
   * @return ArrayList
   */
  public ArrayList getPriceListChecked(){
	return this.priceListChecked;
  }
  /**
   * Set the priceListChecked.
   * @param priceListChecked The priceListChecked to set
   */
  public void setPriceListChecked(ArrayList priceListChecked ){
	this.priceListChecked = priceListChecked;
  }
  /**
   * Returns the price.
   * @return String[]
   */
  public String[] getPrice(){
	return this.price;
  }
  /**
   * Set the price.
   * @param price The price to set
   */
  public void setPrice(String[] price ){
	this.price = price;
  }
  /**
   * Returns the productCategoryList.
   * @return ArrayList
   */
  public ArrayList getProductCategoryList(){
	return this.productCategoryList;
  }
  /**
   * Set the productCategoryList.
   * @param productCategoryList The productCategoryList to set
   */
  public void setProductCategoryList(ArrayList productCategoryList){
	this.productCategoryList = productCategoryList;
  }
  /**
   * Returns the productCategoryListChecked.
   * @return ArrayList
   */
  public ArrayList getProductCategoryListChecked(){
	return this.productCategoryListChecked;
  }
  /**
   * Set the productCategoryListChecked.
   * @param productCategoryListChecked The productCategoryListChecked to set
   */
  public void setProductCategoryListChecked(ArrayList productCategoryListChecked){
	this.productCategoryListChecked = productCategoryListChecked;
  }
  /**
   * 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;
	
  }
 
  /**
   * Returns the countryList.
   * @return ArrayList
   */
  public ArrayList getCountryList() {
	  return countryList;
  }
  /**
   * Set the countryList.
   * @param countryList The countryList to set
   */
  public void setCountryList(ArrayList countryList) {
	  this.countryList = countryList;
  }
  /**
   * Returns the countryListChecked.
   * @return ArrayList
   */
  public ArrayList getCountryListChecked() {
	  return countryListChecked;
  }
  /**
   * Set the countryListChecked.
   * @param countryListChecked The countryListChecked to set
   */
  public void setCountryListChecked(ArrayList countryListChecked) {
	  this.countryListChecked = countryListChecked;
  }
  
  /**
   * Returns the country.
   * @return String[]
   */
  public String[] getCountry() {
	  return this.country;
  }
  /**
   * Set the country.
   * @param country The country to set
   */
  public void setCountry(String[] country) {
	  this.country = country;
  }
  /**
   * Returns the CPCData.
   * @return GBS_PriceCPCPriceListForm
   */
  public GBS_PriceCPCPriceListForm getCPCData(){
  	return this.CPCData;
  }
  /**
   * Set the CPCData.
   * @param CPCData The CPCData to set
   */
  public void setCPCData(GBS_PriceCPCPriceListForm CPCData){
  	this.CPCData=CPCData;
  }

  /**
   * Returns the hardwareData.
   * @return GBS_PriceHardwarePriceListForm
   */
  public GBS_PriceHardwarePriceListForm getHardwareData(){
								            
  	return this.hardwareData;
  }
  /**
   * Set the hardwareData.
   * @param hardwareData The hardwareData to set
   */
  public void setHardwareData(GBS_PriceHardwarePriceListForm hardwareData){
  	this.hardwareData=hardwareData;
	
  }
}

⌨️ 快捷键说明

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