?? userinfoactionform.java
字號(hào):
package org.ithinking.strutsExample.ActionForm;
import java.io.Serializable;
import org.apache.struts.validator.ValidatorForm;
public class UserInfoActionForm extends ValidatorForm implements Serializable {
/** The composite primary key value. */
private java.lang.Integer id;
/** The value of the simple userloginid property. */
private java.lang.String userloginid;
/** The value of the simple username property. */
private java.lang.String username;
/** The value of the simple password property. */
private java.lang.String password;
/** The value of the simple phone property. */
private java.lang.String phone;
/** The value of the simple mobile property. */
private java.lang.String mobile;
/** The value of the simple sex property. */
private java.lang.String sex;
/** The value of the simple email property. */
private java.lang.String email;
/** The value of the simple address property. */
private java.lang.String address;
private String repassword;
/**
* @return Returns the address.
*/
public java.lang.String getAddress() {
return address;
}
/**
* @param address The address to set.
*/
public void setAddress(java.lang.String address) {
this.address = address;
}
/**
* @return Returns the email.
*/
public java.lang.String getEmail() {
return email;
}
/**
* @param email The email to set.
*/
public void setEmail(java.lang.String email) {
this.email = email;
}
/**
* @return Returns the id.
*/
public java.lang.Integer getId() {
return id;
}
/**
* @param id The id to set.
*/
public void setId(java.lang.Integer id) {
this.id = id;
}
/**
* @return Returns the mobile.
*/
public java.lang.String getMobile() {
return mobile;
}
/**
* @param mobile The mobile to set.
*/
public void setMobile(java.lang.String mobile) {
this.mobile = mobile;
}
/**
* @return Returns the password.
*/
public java.lang.String getPassword() {
return password;
}
/**
* @param password The password to set.
*/
public void setPassword(java.lang.String password) {
this.password = password;
}
/**
* @return Returns the phone.
*/
public java.lang.String getPhone() {
return phone;
}
/**
* @param phone The phone to set.
*/
public void setPhone(java.lang.String phone) {
this.phone = phone;
}
/**
* @return Returns the repassword.
*/
public String getRepassword() {
return repassword;
}
/**
* @param repassword The repassword to set.
*/
public void setRepassword(String repassword) {
this.repassword = repassword;
}
/**
* @return Returns the sex.
*/
public java.lang.String getSex() {
return sex;
}
/**
* @param sex The sex to set.
*/
public void setSex(java.lang.String sex) {
this.sex = sex;
}
/**
* @return Returns the userloginid.
*/
public java.lang.String getUserloginid() {
return userloginid;
}
/**
* @param userloginid The userloginid to set.
*/
public void setUserloginid(java.lang.String userloginid) {
this.userloginid = userloginid;
}
/**
* @return Returns the username.
*/
public java.lang.String getUsername() {
return username;
}
/**
* @param username The username to set.
*/
public void setUsername(java.lang.String username) {
this.username = username;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -