📄 userform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.accp.struts.form;
import java.util.Date;
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: 10-21-2008
*
* XDoclet definition:
* @struts.form name="userForm"
*/
public class UserForm extends ActionForm {
/*
* Generated fields
*/
/** uid property */
private String uid;
/** uquestion property */
private String uquestion;
/** upwd property */
private String upwd;
/** uaddress property */
private String uaddress;
/** ustandby1 property */
private String ustandby1;
/** uIDcard property */
private String uIDcard;
/** uname property */
private String uname;
/** uanswer property */
private String uanswer;
/** uemail property */
private String uemail;
/** usonum property */
private int usonum;
/** ustandby2 property */
private String ustandby2;
/** udegree property */
private String udegree;
/** uIP property */
private String uIP;
/** uregistetime property */
private Date uregistetime;
/** utelephone property */
private String utelephone;
/** umailnumber property */
private String umailnumber;
/*
* 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 uid.
* @return String
*/
public String getUid() {
return uid;
}
/**
* Set the uid.
* @param uid The uid to set
*/
public void setUid(String uid) {
this.uid = uid;
}
/**
* Returns the uquestion.
* @return String
*/
public String getUquestion() {
return uquestion;
}
/**
* Set the uquestion.
* @param uquestion The uquestion to set
*/
public void setUquestion(String uquestion) {
this.uquestion = uquestion;
}
/**
* Returns the upwd.
* @return String
*/
public String getUpwd() {
return upwd;
}
/**
* Set the upwd.
* @param upwd The upwd to set
*/
public void setUpwd(String upwd) {
this.upwd = upwd;
}
/**
* Returns the uaddress.
* @return String
*/
public String getUaddress() {
return uaddress;
}
/**
* Set the uaddress.
* @param uaddress The uaddress to set
*/
public void setUaddress(String uaddress) {
this.uaddress = uaddress;
}
/**
* Returns the ustandby1.
* @return String
*/
public String getUstandby1() {
return ustandby1;
}
/**
* Set the ustandby1.
* @param ustandby1 The ustandby1 to set
*/
public void setUstandby1(String ustandby1) {
this.ustandby1 = ustandby1;
}
/**
* Returns the uIDcard.
* @return String
*/
public String getUIDcard() {
return uIDcard;
}
/**
* Set the uIDcard.
* @param uIDcard The uIDcard to set
*/
public void setUIDcard(String uIDcard) {
this.uIDcard = uIDcard;
}
/**
* Returns the uname.
* @return String
*/
public String getUname() {
return uname;
}
/**
* Set the uname.
* @param uname The uname to set
*/
public void setUname(String uname) {
this.uname = uname;
}
/**
* Returns the uanswer.
* @return String
*/
public String getUanswer() {
return uanswer;
}
/**
* Set the uanswer.
* @param uanswer The uanswer to set
*/
public void setUanswer(String uanswer) {
this.uanswer = uanswer;
}
/**
* Returns the uemail.
* @return String
*/
public String getUemail() {
return uemail;
}
/**
* Set the uemail.
* @param uemail The uemail to set
*/
public void setUemail(String uemail) {
this.uemail = uemail;
}
/**
* Returns the usonum.
* @return int
*/
public int getUsonum() {
return usonum;
}
/**
* Set the usonum.
* @param usonum The usonum to set
*/
public void setUsonum(int usonum) {
this.usonum = usonum;
}
/**
* Returns the ustandby2.
* @return String
*/
public String getUstandby2() {
return ustandby2;
}
/**
* Set the ustandby2.
* @param ustandby2 The ustandby2 to set
*/
public void setUstandby2(String ustandby2) {
this.ustandby2 = ustandby2;
}
/**
* Returns the udegree.
* @return String
*/
public String getUdegree() {
return udegree;
}
/**
* Set the udegree.
* @param udegree The udegree to set
*/
public void setUdegree(String udegree) {
this.udegree = udegree;
}
/**
* Returns the uIP.
* @return String
*/
public String getUIP() {
return uIP;
}
/**
* Set the uIP.
* @param uIP The uIP to set
*/
public void setUIP(String uIP) {
this.uIP = uIP;
}
/**
* Returns the uregistetime.
* @return DateTime
*/
public Date getUregistetime() {
return uregistetime;
}
/**
* Set the uregistetime.
* @param uregistetime The uregistetime to set
*/
public void setUregistetime(Date uregistetime) {
this.uregistetime = uregistetime;
}
/**
* Returns the utelephone.
* @return String
*/
public String getUtelephone() {
return utelephone;
}
/**
* Set the utelephone.
* @param utelephone The utelephone to set
*/
public void setUtelephone(String utelephone) {
this.utelephone = utelephone;
}
/**
* Returns the umailnumber.
* @return String
*/
public String getUmailnumber() {
return umailnumber;
}
/**
* Set the umailnumber.
* @param umailnumber The umailnumber to set
*/
public void setUmailnumber(String umailnumber) {
this.umailnumber = umailnumber;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -