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

📄 firstdateoperationform.java

📁 开源struts spring hibernate构架 实验室排课系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package ssl.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: 09-16-2007
 * 
 * XDoclet definition:
 * @struts.form name="firstDateOperationForm"
 */
public class FirstDateOperationForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** term property */
	private String term;

	/** firstDate property */
	private String firstDate;

	/** yearl property */
	private String yearl;

	/** yearh property */
	private String yearh;

	/*
	 * Generated Methods
	 */

	/** 
	 * 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 term.
	 * @return String
	 */
	public String getTerm() {
		return term;
	}

	/** 
	 * Set the term.
	 * @param term The term to set
	 */
	public void setTerm(String term) {
		this.term = term;
	}

	/** 
	 * Returns the firstDate.
	 * @return String
	 */
	public String getFirstDate() {
		return firstDate;
	}

	/** 
	 * Set the firstDate.
	 * @param firstDate The firstDate to set
	 */
	public void setFirstDate(String firstDate) {
		this.firstDate = firstDate;
	}

	/** 
	 * Returns the yearl.
	 * @return String
	 */
	public String getYearl() {
		return yearl;
	}

	/** 
	 * Set the yearl.
	 * @param yearl The yearl to set
	 */
	public void setYearl(String yearl) {
		this.yearl = yearl;
	}

	/** 
	 * Returns the yearh.
	 * @return String
	 */
	public String getYearh() {
		return yearh;
	}

	/** 
	 * Set the yearh.
	 * @param yearh The yearh to set
	 */
	public void setYearh(String yearh) {
		this.yearh = yearh;
	}
}

⌨️ 快捷键说明

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