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

📄 usersform.java

📁 学校新闻发布系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package org.news.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: 05-28-2008
 * 
 * XDoclet definition:
 * @struts.form name="usersForm"
 */
public class UsersForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** resume property */
	private String resume;

	/** sex property */
	private String sex;

	/** username property */
	private String username;

	/** level property */
	private String level;

	/** email property */
	private String email;

	/** qqCode property */
	private String qqCode;

	/** repassword property */
	private String repassword;

	/** password property */
	private String password;

	/** registTime property */
	private String registTime;

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

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

	/** 
	 * Returns the sex.
	 * @return String
	 */
	public String getSex() {
		return sex;
	}

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

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

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

	/** 
	 * Returns the email.
	 * @return String
	 */
	public String getEmail() {
		return email;
	}

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

	/** 
	 * Returns the qqCode.
	 * @return String
	 */
	public String getQqCode() {
		return qqCode;
	}

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

	/** 
	 * Returns the repassword.
	 * @return String
	 */
	public String getRepassword() {
		return repassword;
	}

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

	/** 
	 * Returns the password.
	 * @return String
	 */
	public String getPassword() {
		return password;
	}

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

	/** 
	 * Returns the registTime.
	 * @return String
	 */
	public String getRegistTime() {
		return registTime;
	}

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

⌨️ 快捷键说明

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