📄 addreporttaskform.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.report;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionMapping;/** * AddReportTaskForm.java created by EasyStruts - XsltGen. * http://easystruts.sf.net * created on 05-13-2004 * * XDoclet definition: * @struts:form name="addReportTask" */public class AddReportTaskForm extends ActionForm { // --------------------------------------------------------- Instance Variables /** starttime property */ private String starttime; /** wl_curweek property */ private String wl_curweek; /** endtime property */ private String endtime; /** curstate property */ private String curstate; /** taskid property */ private String taskid; // --------------------------------------------------------- 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 starttime. * @return String */ public String getStarttime() { return starttime; } /** * Set the starttime. * @param starttime The starttime to set */ public void setStarttime(String starttime) { this.starttime = starttime; } /** * Returns the wl_curweek. * @return String */ public String getWl_curweek() { return wl_curweek; } /** * Set the wl_curweek. * @param wl_curweek The wl_curweek to set */ public void setWl_curweek(String wl_curweek) { this.wl_curweek = wl_curweek; } /** * Returns the endtime. * @return String */ public String getEndtime() { return endtime; } /** * Set the endtime. * @param endtime The endtime to set */ public void setEndtime(String endtime) { this.endtime = endtime; } /** * Returns the curstate. * @return String */ public String getCurstate() { return curstate; } /** * Set the curstate. * @param curstate The curstate to set */ public void setCurstate(String curstate) { this.curstate = curstate; } /** * Returns the taskid. * @return String */ public String getTaskid() { return taskid; } /** * Set the taskid. * @param taskid The taskid to set */ public void setTaskid(String taskid) { this.taskid = taskid; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -