?? merchantinfomodifyform.java
字號:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.mole.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: 11-17-2007
*
* XDoclet definition:
*
* @struts.form name="merchantModifyBaseInfoForm"
*/
public class MerchantInfoModifyForm extends ActionForm {
/*
* Generated fields
*/
private String name;
private String gender;
private String telephone;
private String address;
private String cellphone;
private String email;
private String password;
private String newPassword;
/*
* 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 gender.
*
* @return String
*/
public String getGender() {
return gender;
}
/**
* Set the gender.
*
* @param gender
* The gender to set
*/
public void setGender(String gender) {
this.gender = gender;
}
/**
* 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 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 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 name.
*
* @return String
*/
public String getName() {
return name;
}
/**
* Set the name.
*
* @param name
* The name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* Returns the newPassword.
*
* @return String
*/
public String getNewPassword() {
return newPassword;
}
/**
* Set the newPassword.
*
* @param newPassword
* The newPassword to set
*/
public void setNewPassword(String newPassword) {
this.newPassword = newPassword;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -