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

📄 managerform.java

📁 开发环境:windows xp sp2 + Eclipse5+TOMCAT5.5+mysql5.0 系统语言:jsp+struts1.2+ajaxanywhere1.2 测试平台:windo
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package cn.jack.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: 04-02-2007
 * 
 * XDoclet definition:
 * @struts.form name="managerForm"
 */
public class ManagerForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** retime property */
	private String retime;

	/** re property */
	private String re;

	/** id property */
	private int id;
	
	/** userpass property */
	private String userpass;

	/** username property */
	private String username;

	/** userpasa property */
	private String userpasa;

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

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

	/** 
	 * Returns the username.
	 * @return String
	 */
	public String getUsername() {
		return username;
	}

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

	/** 
	 * Returns the userpasa.
	 * @return String
	 */
	public String getUserpasa() {
		return userpasa;
	}

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


	/** 
	 * Returns the retime.
	 * @return String
	 */
	public String getRetime() {
		return retime;
	}

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

	/** 
	 * Returns the re.
	 * @return String
	 */
	public String getRe() {
		return re;
	}

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

	/** 
	 * Returns the id.
	 * @return int
	 */
	public int getId() {
		return id;
	}

	/** 
	 * Set the id.
	 * @param id The id to set
	 */
	public void setId(int id) {
		this.id = id;
	}
}

⌨️ 快捷键说明

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