additemform.java
来自「程序构架基于:运用JSP+Struts+JSTL技术的MVC架构」· Java 代码 · 共 62 行
JAVA
62 行
/**
* 作者: 佟劲纬 创建日期: 2006-1-18
*
* QQ: 532443423 Email: TJW_7@163.com
*/
package com.tjw.guestbook.form;
import javax.servlet.http.*;
import org.apache.struts.action.*;
/**
*
*/
public final class AddItemForm extends ActionForm {
private String caption = null;
private String content = null;
public void setCaption(String caption) {
this.caption = caption;
}
public String getCaption() {
return this.caption;
}
public void setContent(String content) {
this.content = content;
}
public String getContent() {
return this.content;
}
public void reset(ActionMapping mapping, HttpServletRequest request) {
caption = null;
content = null;
}
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
ActionErrors errors = new ActionErrors();
if (caption == null || caption.length() == 0) {
errors.add("captionError", new ActionMessage("error.caption.null"));
} else if (caption.length() <= 2) {
errors.add("captionError", new ActionMessage("error.caption.small"));
}
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 + -
显示快捷键?