📄 addreportmarkform.java
字号:
// Created by Xslt generator for Eclipse.// XSL : not found (java.io.FileNotFoundException: (系统找不到指定的路径。))// Default XSL used : easystruts.jar$org.easystruts.xslgen.JavaClass.xslpackage com.cmmi2pms.pmc.assess;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionMapping;/** * AddReportMarkForm.java created by EasyStruts - XsltGen. * http://easystruts.sf.net * created on 05-23-2004 * * XDoclet definition: * @struts:form name="addReportMarkForm" */public class AddReportMarkForm extends ActionForm { // --------------------------------------------------------- Instance Variables /** mark property */ private String mark; /** nextjob property */ private String nextjob; /** describ property */ private String describ; // --------------------------------------------------------- Methods /** * Method validate * @param ActionMapping mapping * @param HttpServletRequest request * @return ActionErrors */ public ActionErrors validate( ActionMapping mapping, HttpServletRequest request) { throw new UnsupportedOperationException("Generated method 'validate(...)' not implemented."); } /** * Returns the mark. * @return String */ public String getMark() { return mark; } /** * Set the mark. * @param mark The mark to set */ public void setMark(String mark) { this.mark = mark; } /** * Returns the nextjob. * @return String */ public String getNextjob() { return nextjob; } /** * Set the nextjob. * @param nextjob The nextjob to set */ public void setNextjob(String nextjob) { this.nextjob = nextjob; } /** * Returns the describ. * @return String */ public String getDescrib() { return describ; } /** * Set the describ. * @param describ The describ to set */ public void setDescrib(String describ) { this.describ = describ; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -