gbs_presentationform.java
来自「对日软件外包 为东芝做的一个全球商业管理系统」· Java 代码 · 共 180 行
JAVA
180 行
package ACTION;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionMapping;
import COMMON.BaseActionForm;
/**
* GBS_PresentationForm extends BaseActionForm
* created on 11-08-2004
* @author mxx
* @version 1.0
*/
public class GBS_PresentationForm extends BaseActionForm {
// --------------------------------------------------------- Instance Variables
/** customerId property */
private String customerId = "";
/** customerName property */
private String customerName = "";
/** rfpNo property */
private String rfpNo = "";
/** lineNo property */
private String lineNo = "";
/** subsidiaryName property */
private String subsidiaryName = "";
/** lstPresentationList property */
private List lstPresentationList;
/** editflag property */
private boolean editflag = false;
// --------------------------------------------------------- Methods
/**
* Method getSubsidiaryName
* Returns the subsidiaryName.
* @return String
*/
public String getSubsidiaryName() {
return subsidiaryName;
}
/**
* Method setSubsidiaryName
* Set the subsidiaryName.
* @param subsidiaryName The subsidiaryName to set
*/
public void setSubsidiaryName(String subsidiaryName) {
this.subsidiaryName = subsidiaryName;
}
/**
* Method getCustomerName
* Returns the customerName.
* @return String
*/
public String getCustomerName() {
return customerName;
}
/**
* Method setCustomerName
* Set the customerName.
* @param customerName The customerName to set
*/
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
/**
* Method getLineNo
* Returns the customerId.
* @return String
*/
public String getLineNo() {
return lineNo;
}
/**
* Method setLineNo
* Set the customerId.
* @param customerId The customerId to set
*/
public void setLineNo(String lineNo) {
this.lineNo = lineNo;
}
/**
* Method getCustomerId
* Returns the customerId.
* @return String
*/
public String getCustomerId() {
return customerId;
}
/**
* Method setCustomerId
* Set the customerId.
* @param customerId The customerId to set
*/
public void setCustomerId(String customerId) {
this.customerId = customerId;
}
/**
* Method getRfpNo
* Returns the rfpNo.
* @return String
*/
public String getRfpNo() {
return rfpNo;
}
/**
* Method setRfpNo
* Set the rfpNo.
* @param rfpNo The rfpNo to set
*/
public void setRfpNo(String rfpNo) {
this.rfpNo = rfpNo;
}
/**
* Method setLstPresentationList
* Set the customerId.
* @param customerId The customerId to set
*/
public void setLstPresentationList(List lstPresentationList) {
this.lstPresentationList = lstPresentationList;
}
/**
* Method getLstPresentationList
* Returns the rfpNo.
* @return String
*/
public List getLstPresentationList() {
return lstPresentationList;
}
/**
* Method reset
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
customerId = "";
rfpNo = "";
customerName = "";
lineNo = "";
lstPresentationList = null;
super.reset( mapping, request);
}
/**
* @return
*/
public boolean isEditflag() {
return editflag;
}
/**
* @param b
*/
public void setEditflag(boolean b) {
editflag = b;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?