?? editaccountform.java
字號:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.icome.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: 12-17-2006
*
* XDoclet definition:
* @struts.form name="editAccountForm"
*/
public class EditAccountForm extends ActionForm {
/*
* Generated fields
*/
/** birthyear property */
private String birthyear;
/** about property */
private String about;
/** birthmonth property */
private String birthmonth;
/** telephone property */
private String telephone;
/** address property */
private String address;
/** university property */
private String university;
/** msn property */
private String msn;
/** department property */
private String department;
/** sex property */
private String sex;
/** cellphone property */
private String cellphone;
/** realname property */
private String realname;
/** email property */
private String email;
/** qq property */
private String qq;
/** zipcode property */
private String zipcode;
/** birthday property */
private String birthday;
/*
* 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 birthyear.
* @return String
*/
public String getBirthyear() {
return birthyear;
}
/**
* Set the birthyear.
* @param birthyear The birthyear to set
*/
public void setBirthyear(String birthyear) {
this.birthyear = birthyear;
}
/**
* Returns the about.
* @return String
*/
public String getAbout() {
return about;
}
/**
* Set the about.
* @param about The about to set
*/
public void setAbout(String about) {
this.about = about;
}
/**
* Returns the birthmonth.
* @return String
*/
public String getBirthmonth() {
return birthmonth;
}
/**
* Set the birthmonth.
* @param birthmonth The birthmonth to set
*/
public void setBirthmonth(String birthmonth) {
this.birthmonth = birthmonth;
}
/**
* 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 university.
* @return String
*/
public String getUniversity() {
return university;
}
/**
* Set the university.
* @param university The university to set
*/
public void setUniversity(String university) {
this.university = university;
}
/**
* Returns the msn.
* @return String
*/
public String getMsn() {
return msn;
}
/**
* Set the msn.
* @param msn The msn to set
*/
public void setMsn(String msn) {
this.msn = msn;
}
/**
* Returns the department.
* @return String
*/
public String getDepartment() {
return department;
}
/**
* Set the department.
* @param department The department to set
*/
public void setDepartment(String department) {
this.department = department;
}
/**
* 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 realname.
* @return String
*/
public String getRealname() {
return realname;
}
/**
* Set the realname.
* @param realname The realname to set
*/
public void setRealname(String realname) {
this.realname = realname;
}
/**
* 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 qq.
* @return String
*/
public String getQq() {
return qq;
}
/**
* Set the qq.
* @param qq The qq to set
*/
public void setQq(String qq) {
this.qq = qq;
}
/**
* Returns the zipcode.
* @return String
*/
public String getZipcode() {
return zipcode;
}
/**
* Set the zipcode.
* @param zipcode The zipcode to set
*/
public void setZipcode(String zipcode) {
this.zipcode = zipcode;
}
/**
* Returns the birthday.
* @return String
*/
public String getBirthday() {
return birthday;
}
/**
* Set the birthday.
* @param birthday The birthday to set
*/
public void setBirthday(String birthday) {
this.birthday = birthday;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -