?? gbs_mifform.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 + -