📄 registform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.perwebbank.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.validator.ValidatorForm;
/**
* MyEclipse Struts
* Creation date: 12-12-2006
*
* XDoclet definition:
* @struts.form name="registForm"
*/
public class RegistForm extends ValidatorForm {
/*
* Generated fields
*/
/** phone property */
private String phone;
/** sex property */
private String sex;
/** loginpass property */
private String loginpass;
/** balance property */
private String balance;
/** contradepass property */
private String contradepass;
/** tradepass property */
private String tradepass;
/** address property */
private String address;
/** username property */
private String username;
/** conloginpass property */
private String conloginpass;
/** date property */
private String date;
/** id property */
private String id;
/*
* Generated Methods
*/
/**
* Method reset
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
this.address = null;
this.balance = null;
this.conloginpass = null;
this.contradepass = null;
this.date = null;
this.id = null;
this.loginpass = null;
this.phone = null;
this.sex = null;
this.tradepass = null;
this.username = null;
}
/**
* Returns the phone.
* @return String
*/
public String getPhone() {
return phone;
}
/**
* Set the phone.
* @param phone The phone to set
*/
public void setPhone(String phone) {
this.phone = phone;
}
/**
* Returns the sex.
* @return String
*/
public String getSex() {
return sex;
}
/**
* Set the sex.
* @param sex The sex to set
*/
public void setSex(String sex) {
this.sex = sex;
}
/**
* Returns the loginpass.
* @return String
*/
public String getLoginpass() {
return loginpass;
}
/**
* Set the loginpass.
* @param loginpass The loginpass to set
*/
public void setLoginpass(String loginpass) {
this.loginpass = loginpass;
}
/**
* Returns the balance.
* @return String
*/
public String getBalance() {
return balance;
}
/**
* Set the balance.
* @param balance The balance to set
*/
public void setBalance(String balance) {
this.balance = balance;
}
/**
* Returns the contradepass.
* @return String
*/
public String getContradepass() {
return contradepass;
}
/**
* Set the contradepass.
* @param contradepass The contradepass to set
*/
public void setContradepass(String contradepass) {
this.contradepass = contradepass;
}
/**
* Returns the tradepass.
* @return String
*/
public String getTradepass() {
return tradepass;
}
/**
* Set the tradepass.
* @param tradepass The tradepass to set
*/
public void setTradepass(String tradepass) {
this.tradepass = tradepass;
}
/**
* 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 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 conloginpass.
* @return String
*/
public String getConloginpass() {
return conloginpass;
}
/**
* Set the conloginpass.
* @param conloginpass The conloginpass to set
*/
public void setConloginpass(String conloginpass) {
this.conloginpass = conloginpass;
}
/**
* Returns the date.
* @return String
*/
public String getDate() {
return date;
}
/**
* Set the date.
* @param date The date to set
*/
public void setDate(String date) {
this.date = date;
}
/**
* Returns the id.
* @return String
*/
public String getId() {
return id;
}
/**
* Set the id.
* @param id The id to set
*/
public void setId(String id) {
this.id = id;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -