⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 addprocessform.java

📁 本人课程设计时做的一个用struts框架实现的基于cmmi2的项目管理系统的原型。还有部分功能尚未实现
💻 JAVA
字号:
// 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 com.cmmi2pms.pp.process;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionMapping;/**  * AddProcessForm.java created by EasyStruts - XsltGen. * http://easystruts.sf.net * created on 04-25-2004 *  * XDoclet definition: * @struts:form name="addprocessForm" */public class AddProcessForm extends ActionForm {	// --------------------------------------------------------- Instance Variables	/** taskId property */	private String taskId;	/** describ property */	private String describ;	/** curPlanStart property */	private String curPlanStart;	/** projectId property */	private String projectId;	/** curPlanend property */	private String curPlanend;	/** orgPlanend property */	private String orgPlanend;	/** phase property */	private String phase;	/** managerId property */	private String managerId;	/** orgPlanStart property */	private String orgPlanStart;	/** harvest property */	private String harvest;	/** subTask property */	private String subTask;	// --------------------------------------------------------- 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 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;	}	/** 	 * 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;	}	/** 	 * Returns the curPlanStart.	 * @return String	 */	public String getCurPlanStart() {		return curPlanStart;	}	/** 	 * Set the curPlanStart.	 * @param curPlanStart The curPlanStart to set	 */	public void setCurPlanStart(String curPlanStart) {		this.curPlanStart = curPlanStart;	}	/** 	 * Returns the projectId.	 * @return String	 */	public String getProjectId() {		return projectId;	}	/** 	 * Set the projectId.	 * @param projectId The projectId to set	 */	public void setProjectId(String projectId) {		this.projectId = projectId;	}	/** 	 * Returns the curPlanend.	 * @return String	 */	public String getCurPlanend() {		return curPlanend;	}	/** 	 * Set the curPlanend.	 * @param curPlanend The curPlanend to set	 */	public void setCurPlanend(String curPlanend) {		this.curPlanend = curPlanend;	}	/** 	 * Returns the orgPlanend.	 * @return String	 */	public String getOrgPlanend() {		return orgPlanend;	}	/** 	 * Set the orgPlanend.	 * @param orgPlanend The orgPlanend to set	 */	public void setOrgPlanend(String orgPlanend) {		this.orgPlanend = orgPlanend;	}	/** 	 * Returns the phase.	 * @return String	 */	public String getPhase() {		return phase;	}	/** 	 * Set the phase.	 * @param phase The phase to set	 */	public void setPhase(String phase) {		this.phase = phase;	}	/** 	 * Returns the managerId.	 * @return String	 */	public String getManagerId() {		return managerId;	}	/** 	 * Set the managerId.	 * @param manager The manager to set	 */	public void setManagerId(String managerId) {		this.managerId = managerId;	}	/** 	 * Returns the orgPlanStart.	 * @return String	 */	public String getOrgPlanStart() {		return orgPlanStart;	}	/** 	 * Set the orgPlanStart.	 * @param orgPlanStart The orgPlanStart to set	 */	public void setOrgPlanStart(String orgPlanStart) {		this.orgPlanStart = orgPlanStart;	}	/** 	 * Returns the harvest.	 * @return String	 */	public String getHarvest() {		return harvest;	}	/** 	 * Set the harvest.	 * @param harvest The harvest to set	 */	public void setHarvest(String harvest) {		this.harvest = harvest;	}	/** 	 * Returns the subTask.	 * @return String	 */	public String getSubTask() {		return subTask;	}	/** 	 * Set the subTask.	 * @param subTask The subTask to set	 */	public void setSubTask(String subTask) {		this.subTask = subTask;	}}

⌨️ 快捷键说明

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