📄 gbs_productavailabilityconditionform.java
字号:
/**
* method GBS_ProductAvailabilityConditionForm.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;
/**
* @author LPISystem
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class GBS_ProductAvailabilityConditionForm extends BaseActionForm {
private String colorCpm = "";
private String bwCpm = "";
private String fax = "";
private String printer = "";
private String cpm1 = "";
private String cpm2 = "";
private String downloadProduct = "";
private String fromPage = "";
private String[] country = null;
private String[] product = null;
private String[] subsidiary = null;
private ArrayList countryList = new ArrayList();
private ArrayList productList = new ArrayList();
private ArrayList subsidiaryList = new ArrayList();
private ArrayList handlingList = new ArrayList();
private ArrayList selectCountryList = new ArrayList();
private ArrayList selectProductList = new ArrayList();
private ArrayList productBWList = new ArrayList();
private ArrayList productColorList = new ArrayList();
private ArrayList selectSubsidiaryList = new ArrayList();
private ArrayList firstDataList = new ArrayList();
/**
* Method reset
* @param ActionMapping mapping
* @param HttpServletRequest request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
colorCpm = "";
bwCpm = "";
fax = "";
printer = "";
cpm1 = "";
cpm2 = "";
downloadProduct = "";
country = null;
product = null;
subsidiary = null;
countryList = new ArrayList();
productList = new ArrayList();
subsidiaryList = new ArrayList();
handlingList = new ArrayList();
selectCountryList = new ArrayList();
selectProductList = new ArrayList();
selectSubsidiaryList = new ArrayList();
firstDataList = new ArrayList();
super.reset(mapping, request);
}
public ArrayList getSelectProductList() {
return selectProductList;
}
public void setSelectProductList(ArrayList selectProductList) {
this.selectProductList = selectProductList;
}
public ArrayList getSelectSubsidiaryList() {
return selectSubsidiaryList;
}
public void setSelectsubsidiaryList(ArrayList selectsubsidiaryList) {
this.selectSubsidiaryList = selectsubsidiaryList;
}
public String[] getSubsidiary() {
return subsidiary;
}
public void setSubsidiary(String[] subsidiary) {
this.subsidiary = subsidiary;
}
public String[] getProduct() {
return product;
}
public void setProduct(String[] product) {
this.product = product;
}
public String[] getCountry() {
return country;
}
public void setCountry(String country[]) {
this.country = country;
}
public ArrayList getSelectCountryList() {
return selectCountryList;
}
public void setSelectCountryList(ArrayList selectCountryList) {
this.selectCountryList = selectCountryList;
}
public ArrayList getCountryList() {
return countryList;
}
public void setCountryList(ArrayList countryList) {
this.countryList = countryList;
}
public ArrayList getProductList() {
return productList;
}
public void setProductList(ArrayList productList) {
this.productList = productList;
}
public ArrayList getHandlingList() {
return handlingList;
}
public void setHandlingList(ArrayList handlingList) {
this.handlingList = handlingList;
}
public ArrayList getSubsidiaryList() {
return subsidiaryList;
}
public void setSubsidiaryList(ArrayList subsidiaryList) {
this.subsidiaryList = subsidiaryList;
}
/**
* Returns the bwCpm.
* @return String
*/
public String getBwCpm() {
return bwCpm;
}
/**
* Set the bwCpm.
* @param bwCpm The bwCpm to set
*/
public void setBwCpm(String bwCpm) {
this.bwCpm = bwCpm;
}
/**
* Returns the colorCpm.
* @return String
*/
public String getColorCpm() {
return colorCpm;
}
/**
* Set the colorCpm.
* @param colorCpm The colorCpm to set
*/
public void setColorCpm(String colorCpm) {
this.colorCpm = colorCpm;
}
/**
* 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 getCpm1() {
return cpm1;
}
/**
* @return
*/
public String getCpm2() {
return cpm2;
}
/**
* @return
*/
public String getFax() {
return fax;
}
/**
* @return
*/
public String getPrinter() {
return printer;
}
/**
* @param string
*/
public void setCpm1(String string) {
cpm1 = string;
}
/**
* @param string
*/
public void setCpm2(String string) {
cpm2 = string;
}
/**
* @param string
*/
public void setFax(String string) {
fax = string;
}
/**
* @param string
*/
public void setPrinter(String string) {
printer = string;
}
/**
* @param list
*/
public void setSelectSubsidiaryList(ArrayList list) {
selectSubsidiaryList = list;
}
/**
* @return
*/
public ArrayList getProductBWList() {
return productBWList;
}
/**
* @return
*/
public ArrayList getProductColorList() {
return productColorList;
}
/**
* @param list
*/
public void setProductBWList(ArrayList list) {
productBWList = list;
}
/**
* @param list
*/
public void setProductColorList(ArrayList list) {
productColorList = list;
}
/**
* @return
*/
public String getFromPage() {
return fromPage;
}
/**
* @param string
*/
public void setFromPage(String string) {
fromPage = string;
}
/**
* @return
*/
public ArrayList getFirstDataList() {
return firstDataList;
}
/**
* @param list
*/
public void setFirstDataList(ArrayList list) {
firstDataList = list;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -