📄 adminvoucherviewform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.mole.struts.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
/**
* MyEclipse Struts Creation date: 12-24-2007
*
* XDoclet definition:
*
* @struts.form name="adminVoucherViewForm"
*/
public class AdminVoucherViewForm extends ActionForm {
private String keyword;
private String selectedType;
private String selectedLine;
private String storeCity;
private String storeProvince;
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
// TODO Auto-generated method stub
return null;
}
public String getKeyword() {
return keyword;
}
public void setKeyword(String keyword) {
this.keyword = keyword;
}
public String getSelectedType() {
return selectedType;
}
public void setSelectedType(String selectedType) {
this.selectedType = selectedType;
}
public String getSelectedLine() {
return selectedLine;
}
public void setSelectedLine(String selectedLine) {
this.selectedLine = selectedLine;
}
public String getStoreCity() {
return storeCity;
}
public void setStoreCity(String storeCity) {
this.storeCity = storeCity;
}
public String getStoreProvince() {
return storeProvince;
}
public void setStoreProvince(String storeProvince) {
this.storeProvince = storeProvince;
}
public void reset(ActionMapping mapping, HttpServletRequest request) {
// TODO Auto-generated method stub
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -