📄 employeeform.java
字号:
package com.jspdev.ch18;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.*;import javax.servlet.http.HttpServletRequest; public class EmployeeForm extends ActionForm { private Employee employee=new Employee(); //private String name; public void setName(String name) { this.employee.setName(name); } public String getName() { return this.employee.getName(); } public void setEmployee(Employee employee) { this.employee=employee; } public Employee getEmployee() { return this.employee; } public void reset(ActionMapping mapping, HttpServletRequest request) { this.employee=new Employee(); } public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) { ActionErrors errors = new ActionErrors(); if ((employee.getName() == null) || (employee.getSalary()<0)) { errors.add("name", new ActionError("name is null")); } return errors; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -