📄 registerform.java
字号:
/*
* Created on 2006-12-28
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package stock.form;
import org.apache.struts.action.ActionForm;
/**
* @author yuhui
*
* TODO To change the template for this generated type comment go to Window -
* Preferences - Java - Code Style - Code Templates
*/
public class RegisterForm extends ActionForm {
/**
*
*/
private static final long serialVersionUID = 1L;
String userName;
String userNiName;
String userPsw;
String userConPsw;
String userPswQus;
String userPswAns;
String userEmail;
boolean register;
/**
* @return Returns the register.
*/
public boolean isRegister() {
return register;
}
/**
* @param register The register to set.
*/
public void setRegister(boolean register) {
this.register = register;
}
/**
* @return Returns the userConPsw.
*/
public String getUserConPsw() {
return userConPsw;
}
/**
* @param userConPsw The userConPsw to set.
*/
public void setUserConPsw(String userConPsw) {
this.userConPsw = userConPsw;
}
/**
* @return Returns the userEmail.
*/
public String getUserEmail() {
return userEmail;
}
/**
* @param userEmail The userEmail to set.
*/
public void setUserEmail(String userEmail) {
this.userEmail = userEmail;
}
/**
* @return Returns the userName.
*/
public String getUserName() {
return userName;
}
/**
* @param userName The userName to set.
*/
public void setUserName(String userName) {
this.userName = userName;
}
/**
* @return Returns the userNiName.
*/
public String getUserNiName() {
return userNiName;
}
/**
* @param userNiName The userNiName to set.
*/
public void setUserNiName(String userNiName) {
this.userNiName = userNiName;
}
/**
* @return Returns the userPsw.
*/
public String getUserPsw() {
return userPsw;
}
/**
* @param userPsw The userPsw to set.
*/
public void setUserPsw(String userPsw) {
this.userPsw = userPsw;
}
/**
* @return Returns the userPswAns.
*/
public String getUserPswAns() {
return userPswAns;
}
/**
* @param userPswAns The userPswAns to set.
*/
public void setUserPswAns(String userPswAns) {
this.userPswAns = userPswAns;
}
/**
* @return Returns the userPswQus.
*/
public String getUserPswQus() {
return userPswQus;
}
/**
* @param userPswQus The userPswQus to set.
*/
public void setUserPswQus(String userPswQus) {
this.userPswQus = userPswQus;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -