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

📄 registerform.java

📁 网上书店源码。功能全面
💻 JAVA
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_3.9.210/xslt/JavaClass.xslpackage com.ascent.struts.form;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionMapping;import org.apache.struts.validator.ValidatorForm;/**  * MyEclipse Struts * Creation date: 09-05-2005 *  * XDoclet definition: * @struts:form name="registerForm" */public class RegisterForm extends ValidatorForm {	// --------------------------------------------------------- Instance Variables	/** password property */	private String password;	/** passwordAgain property */	private String passwordAgain;	/** customerName property */	private String customerName;	/** email property */	private String email;	// --------------------------------------------------------- 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 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 passwordAgain.	 * @return String	 */	public String getPasswordAgain() {		return passwordAgain;	}	/** 	 * Set the passwordAgain.	 * @param passwordAgain The passwordAgain to set	 */	public void setPasswordAgain(String passwordAgain) {		this.passwordAgain = passwordAgain;	}	/** 	 * Returns the customerName.	 * @return String	 */	public String getCustomerName() {		return customerName;	}	/** 	 * Set the customerName.	 * @param customerName The customerName to set	 */	public void setCustomerName(String customerName) {		this.customerName = customerName;	}	/** 	 * 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;	}}

⌨️ 快捷键说明

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