📄 customermodifypersonalinfoform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.mole.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: 11-15-2007
*
* XDoclet definition:
*
* @struts.form name="customerModifyPersonalInfoForm"
*/
public class CustomerModifyPersonalInfoForm extends ActionForm {
/*
* Generated fields
*/
/** gender property */
private String gender;
/** reNewPassword property */
private String reNewPassword;
/** loginName property */
private String loginName;
/** cellphone property */
private String cellphone;
/** telephone property */
private String telephone;
/** address property */
private String address;
/** email property */
private String email;
/** oldPassword property */
private String oldPassword;
/** nickname property */
private String nickname;
/** name property */
private String name;
/** company property */
private String company;
/** newPassword property */
private String newPassword;
/** user face image */
private String imageUrl;
/** user face width */
private String imageWidth;
/** user face height */
private String imageHeight;
/*
* 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 gender.
*
* @return String
*/
public String getGender() {
return gender;
}
/**
* Set the gender.
*
* @param gender
* The gender to set
*/
public void setGender(String gender) {
this.gender = gender;
}
/**
* Returns the reNewPassword.
*
* @return String
*/
public String getReNewPassword() {
return reNewPassword;
}
/**
* Set the reNewPassword.
*
* @param reNewPassword
* The reNewPassword to set
*/
public void setReNewPassword(String reNewPassword) {
this.reNewPassword = reNewPassword;
}
/**
* Returns the loginName.
*
* @return String
*/
public String getLoginName() {
return loginName;
}
/**
* Set the loginName.
*
* @param loginName
* The loginName to set
*/
public void setLoginName(String loginName) {
this.loginName = loginName;
}
/**
* Returns the cellphone.
*
* @return String
*/
public String getCellphone() {
return cellphone;
}
/**
* Set the cellphone.
*
* @param cellphone
* The cellphone to set
*/
public void setCellphone(String cellphone) {
this.cellphone = cellphone;
}
/**
* Returns the telephone.
*
* @return String
*/
public String getTelephone() {
return telephone;
}
/**
* Set the telephone.
*
* @param telephone
* The telephone to set
*/
public void setTelephone(String telephone) {
this.telephone = telephone;
}
/**
* Returns the address.
*
* @return String
*/
public String getAddress() {
return address;
}
/**
* Set the address.
*
* @param address
* The address to set
*/
public void setAddress(String address) {
this.address = address;
}
/**
* 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 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;
}
/**
* Returns the name.
*
* @return String
*/
public String getName() {
return name;
}
/**
* Set the name.
*
* @param name
* The name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* Returns the company.
*
* @return String
*/
public String getCompany() {
return company;
}
/**
* Set the company.
*
* @param company
* The company to set
*/
public void setCompany(String company) {
this.company = company;
}
/**
* 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;
}
public String getImageUrl() {
return imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
public String getImageWidth() {
return imageWidth;
}
public void setImageWidth(String imageWidth) {
this.imageWidth = imageWidth;
}
public String getImageHeight() {
return imageHeight;
}
public void setImageHeight(String imageHeight) {
this.imageHeight = imageHeight;
}
public String getNickname() {
return nickname;
}
public void setNickname(String nickname) {
this.nickname = nickname;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -