📄 addemployeeform.java
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.1/xslt/JavaClass.xslpackage cn.com.thinkbank.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: 01-23-2007 * * XDoclet definition: * @struts.form name="addEmployeeForm" */public class AddEmployeeForm extends ActionForm { // --------------------------------------------------------- Instance Variables /** empNo property */ private String empNo; /** empName property */ private String empName; /** deptNo property */ private String deptNo; // --------------------------------------------------------- Methods /** * Method validate * @param mapping * @param request * @return ActionErrors */ public ActionErrors validate( ActionMapping mapping, HttpServletRequest request) { // TODO Auto-generated method stub return null; } /** * Method reset * @param mapping * @param request */ public void reset(ActionMapping mapping, HttpServletRequest request) { // TODO Auto-generated method stub } /** * Returns the empNo. * @return String */ public String getEmpNo() { return empNo; } /** * Set the empNo. * @param empNo The empNo to set */ public void setEmpNo(String empNo) { this.empNo = empNo; } /** * Returns the empName. * @return String */ public String getEmpName() { return empName; } /** * Set the empName. * @param empName The empName to set */ public void setEmpName(String empName) { this.empName = empName; } /** * Returns the deptNo. * @return String */ public String getDeptNo() { return deptNo; } /** * Set the deptNo. * @param deptNo The deptNo to set */ public void setDeptNo(String deptNo) { this.deptNo = deptNo; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -