replyform.java

来自「一个Struts的简易留言本」· Java 代码 · 共 94 行

JAVA
94
字号
// Created by Xslt generator for Eclipse.// XSL :  not found (java.io.FileNotFoundException:  (Bad file descriptor))// Default XSL used : easystruts.jar$org.easystruts.xslgen.JavaClass.xslpackage net.javafan.guestbook.form;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.ActionError;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionMapping;/**  * ReplyForm.java created by EasyStruts - XsltGen. * http://easystruts.sf.net * created on 09-12-2004 *  * XDoclet definition: * @struts:form name="replyForm" */public class ReplyForm extends ActionForm {	// --------------------------------------------------------- Instance Variables	/** reply property */	private String reply;	/** id property */	private String id;	// --------------------------------------------------------- Methods	/** 	 * Method validate	 * @param ActionMapping mapping	 * @param HttpServletRequest request	 * @return ActionErrors	 */	public ActionErrors validate(		ActionMapping mapping,		HttpServletRequest request) {			ActionErrors errors = new ActionErrors();			if (reply == null || reply.trim().equals("")) {				errors.add("reply", new ActionError("error.noReply"));			}		return errors;	}	/** 	 * Method reset	 * @param ActionMapping mapping	 * @param HttpServletRequest request	 */	public void reset(ActionMapping mapping, HttpServletRequest request) {		reply = "";	}	/** 	 * Returns the reply.	 * @return String	 */	public String getReply() {		return reply;	}	/** 	 * Set the reply.	 * @param reply The reply to set	 */	public void setReply(String reply) {		this.reply = reply;	}	/** 	 * Returns the id.	 * @return String	 */	public String getId() {		return id;	}	/** 	 * Set the id.	 * @param id The id to set	 */	public void setId(String id) {		this.id = id;	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?