📄 switchpageform.java
字号:
/* * SwitchPageForm.java * * Created on 2005年3月1日, 下午2:06 */package test.action;import javax.servlet.http.*;import org.apache.struts.action.*;/** * * @author LiuPOPO */public class SwitchPageForm extends ActionForm{ /** Creates a new instance of SwitchPageForm */ public SwitchPageForm() { } private String id; public String getId(){ return this.id; } public void setId(String id){ this.id = id; } public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) { ActionErrors actionErrors = new ActionErrors(); if(this.id.length() < 1 || this.id == null){ actionErrors.add("id",new ActionMessage("test.index.error.idEmpty")); } return actionErrors; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -