firstdateoperationform.java

来自「开源struts spring hibernate构架 实验室排课系统」· Java 代码 · 共 124 行

JAVA
124
字号
/*
 * 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 + =
减小字号Ctrl + -
显示快捷键?