addquoteform.java
来自「程序构架基于:运用JSP+Struts+JSTL技术的MVC架构」· Java 代码 · 共 60 行
JAVA
60 行
/**
* 作者: 佟劲纬 创建日期: 2006-2-1
*
* QQ: 532443423 Email: TJW_7@163.com
*/
package com.tjw.guestbook.form;
import javax.servlet.http.*;
import org.apache.struts.action.*;
/**
*
*/
public class AddQuoteForm extends ActionForm {
private String id = null;
private String content = null;
public void setId(String id) {
this.id = id;
}
public String getId() {
return this.id;
}
public void setContent(String content) {
this.content = content;
}
public String getContent() {
return this.content;
}
public void reset(ActionMapping mapping, HttpServletRequest request) {
id = null;
content = null;
}
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
ActionErrors errors = new ActionErrors();
if (id == null || id.length() < 1) {
errors.add("idError", new ActionMessage("error.id"));
}
if (content == null || content.length() < 1) {
errors.add("contentError", new ActionMessage("error.content.null"));
} else if (content.length() > 500) {
errors.add("contentError", new ActionMessage("error.content.max"));
}
return errors;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?