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

📄 usermanagerform.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: 06-01-2008
 * 
 * XDoclet definition:
 * @struts.form name="UserManagerForm"
 */
public class UserManagerForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** resume property */
	private String resume;

	/** phone property */
	private String phone;

	/** email property */
	private String email;

	/** newPassword property */
	private String newPassword;

	/** qqCode property */
	private String qqCode;

	/** oldPassword property */
	private String oldPassword;
	
	private String repassword;
	/*
	 * 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 phone.
	 * @return String
	 */
	public String getPhone() {
		return phone;
	}

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

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

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

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

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

	public String getRepassword() {
		return repassword;
	}

	public void setRepassword(String repassword) {
		this.repassword = repassword;
	}
}

⌨️ 快捷键说明

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