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

📄 thensurestudentform.java

📁 这是一个可以让学生选择自己喜欢的课题
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.yourcompany.struts.form;

import java.io.UnsupportedEncodingException;

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: 08-04-2008
 * 
 * XDoclet definition:
 * @struts.form name="thensurestudentForm"
 */
public class ThensurestudentForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** stid2 property */
	private String stid2;

	/** tiid property */
	private String tiid;

	/** stid1 property */
	private String stid1;

	/** stid3 property */
	private String stid3;

	/*
	 * 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
		try
		{
			request.setCharacterEncoding("GBK");
		}
		catch (UnsupportedEncodingException ex)
		{}
	}

	/** 
	 * Returns the stid2.
	 * @return String
	 */
	public String getStid2() {
		return stid2;
	}

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

	/** 
	 * Returns the tiid.
	 * @return Integer
	 */
	public String getTiid() {
		return tiid;
	}

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

	/** 
	 * Returns the stid1.
	 * @return String
	 */
	public String getStid1() {
		return stid1;
	}

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

	/** 
	 * Returns the stid3.
	 * @return String
	 */
	public String getStid3() {
		return stid3;
	}

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

⌨️ 快捷键说明

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