messageform.java
来自「一个order订单系统。用spring+struts+hibernate」· Java 代码 · 共 88 行
JAVA
88 行
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xslpackage cn.hxex.blog.struts.form;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionMapping;import org.apache.struts.validator.ValidatorForm;/** * MyEclipse Struts * Creation date: 07-23-2006 * * XDoclet definition: * @struts.form name="messageForm" */public class MessageForm extends ValidatorForm { // --------------------------------------------------------- Instance Variables /** title property */ private String title; /** content property */ private String content; /** id property */ private String id; // --------------------------------------------------------- Methods /** * Method reset * @param mapping * @param request */ public void reset(ActionMapping mapping, HttpServletRequest request) { this.title = null; this.content = null; this.id = null; } /** * Returns the title. * @return String */ public String getTitle() { return title; } /** * Set the title. * @param title The title to set */ public void setTitle(String title) { this.title = title; } /** * Returns the content. * @return String */ public String getContent() { return content; } /** * Set the content. * @param content The content to set */ public void setContent(String content) { this.content = content; } public String getId() { return id; } public void setId(String id) { this.id = id; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?