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

📄 registeruserform.java

📁 这是个用struts开发的电话卡销售与管理系统.具有网络设备监控能力
💻 JAVA
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.0.1/xslt/JavaClass.xslpackage com.phone.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: 12-02-2005 *  * XDoclet definition: * @struts.form name="registerUserForm" * @param userID * @param userName * @param userCode * @param userAddr * @param userValitadePass * @param userEmail * @param userSex * @param userAnswer * @param userCity * @param userProvince * @param userQuestion * @param userPass *  */public class RegisterUserForm extends ActionForm {	// --------------------------------------------------------- Instance Variables	/**	 * 	 */	private static final long serialVersionUID = 1L;	/** userName property */	private String userName;	/** userID property */	private String userID;	/** userCode property */	private String userCode;	/** userAddr property */	private String userAddr;	/** userValitadePass property */	private String userValitadePass;	/** userEmail property */	private String userEmail;	/** userSex property */	private String userSex;	/** userAnswer property */	private String userAnswer;	/** userCity property */	private String userCity;	/** userProvince property */	private String userProvince;	/** userQuestion property */	private String userQuestion;	/** userPass property */	private String userPass;		/** userPass userPhone */	private String userPhone;	// --------------------------------------------------------- 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 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 userID.	 * @return String	 */	public String getUserID() {		return userID;	}	/** 	 * Set the userID.	 * @param userID The userID to set	 */	public void setUserID(String userID) {		this.userID = userID;	}	/** 	 * Returns the userCode.	 * @return String	 */	public String getUserCode() {		return userCode;	}	/** 	 * Set the userCode.	 * @param userCode The userCode to set	 */	public void setUserCode(String userCode) {		this.userCode = userCode;	}	/** 	 * Returns the userAddr.	 * @return String	 */	public String getUserAddr() {		return userAddr;	}	/** 	 * Set the userAddr.	 * @param userAddr The userAddr to set	 */	public void setUserAddr(String userAddr) {		this.userAddr = userAddr;	}	/** 	 * Returns the userValitadePass.	 * @return String	 */	public String getUserValitadePass() {		return userValitadePass;	}	/** 	 * Set the userValitadePass.	 * @param userValitadePass The userValitadePass to set	 */	public void setUserValitadePass(String userValitadePass) {		this.userValitadePass = userValitadePass;	}	/** 	 * Returns the userEmail.	 * @return String	 */	public String getUserEmail() {		return userEmail;	}	/** 	 * Set the userEmail.	 * @param userEmail The userEmail to set	 */	public void setUserEmail(String userEmail) {		this.userEmail = userEmail;	}	/** 	 * Returns the userSex.	 * @return String	 */	public String getUserSex() {		return userSex;	}	/** 	 * Set the userSex.	 * @param userSex The userSex to set	 */	public void setUserSex(String userSex) {		this.userSex = userSex;	}	/** 	 * Returns the userAnswer.	 * @return String	 */	public String getUserAnswer() {		return userAnswer;	}	/** 	 * Set the userAnswer.	 * @param userAnswer The userAnswer to set	 */	public void setUserAnswer(String userAnswer) {		this.userAnswer = userAnswer;	}	/** 	 * Returns the userCity.	 * @return String	 */	public String getUserCity() {		return userCity;	}	/** 	 * Set the userCity.	 * @param userCity The userCity to set	 */	public void setUserCity(String userCity) {		this.userCity = userCity;	}	/** 	 * Returns the userProvince.	 * @return String	 */	public String getUserProvince() {		return userProvince;	}	/** 	 * Set the userProvince.	 * @param userProvince The userProvince to set	 */	public void setUserProvince(String userProvince) {		this.userProvince = userProvince;	}	/** 	 * Returns the userQuestion.	 * @return String	 */	public String getUserQuestion() {		return userQuestion;	}	/** 	 * Set the userQuestion.	 * @param userQuestion The userQuestion to set	 */	public void setUserQuestion(String userQuestion) {		this.userQuestion = userQuestion;	}	/** 	 * 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 userPass.	 * @return String	 */	public String getUserPhone() {		return userPhone;	}	/** 	 * Set the userPass.	 * @param userPass The userPass to set	 */	public void setUserPhone(String userPhone) {		this.userPhone = userPhone;	}}

⌨️ 快捷键说明

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