📄 appform.java
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.0.0/xslt/JavaClass.xslpackage com.xxfb.struts.form;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionMapping;/** * MyEclipse Struts * Creation date: 01-14-2008 * * XDoclet definition: * @struts.form name="appForm" */public class AppForm extends ActionForm { // --------------------------------------------------------- Instance Variables /** appxtreason property */ private String appxtreason; /** appname property */ private String appname; /** isagree property */ private String isagree; /** appflreason property */ private String appflreason; /** appuserreason property */ private String appuserreason; /** appid property */ private String appid; /** isread property */ private String isread; private String userid; // --------------------------------------------------------- Methods public String getUserid() { return userid; } public void setUserid(String userid) { this.userid = userid; } /** * Method validate * @param mapping * @param request * @return ActionErrors */ public ActionErrors validate( ActionMapping mapping, HttpServletRequest request) { // TODO Auto-generated method stub return null; } /** * Method reset * @param mapping * @param request */ public void reset(ActionMapping mapping, HttpServletRequest request) { // TODO Auto-generated method stub } /** * Returns the appxtreason. * @return String */ public String getAppxtreason() { return appxtreason; } /** * Set the appxtreason. * @param appxtreason The appxtreason to set */ public void setAppxtreason(String appxtreason) { this.appxtreason = appxtreason; } /** * Returns the appname. * @return String */ public String getAppname() { return appname; } /** * Set the appname. * @param appname The appname to set */ public void setAppname(String appname) { this.appname = appname; } /** * Returns the isagree. * @return String */ public String getIsagree() { return isagree; } /** * Set the isagree. * @param isagree The isagree to set */ public void setIsagree(String isagree) { this.isagree = isagree; } /** * Returns the appflreason. * @return String */ public String getAppflreason() { return appflreason; } /** * Set the appflreason. * @param appflreason The appflreason to set */ public void setAppflreason(String appflreason) { this.appflreason = appflreason; } /** * Returns the appuserreason. * @return String */ public String getAppuserreason() { return appuserreason; } /** * Set the appuserreason. * @param appuserreason The appuserreason to set */ public void setAppuserreason(String appuserreason) { this.appuserreason = appuserreason; } /** * Returns the appid. * @return String */ public String getAppid() { return appid; } /** * Set the appid. * @param appid The appid to set */ public void setAppid(String appid) { this.appid = appid; } /** * Returns the isread. * @return String */ public String getIsread() { return isread; } /** * Set the isread. * @param isread The isread to set */ public void setIsread(String isread) { this.isread = isread; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -