📄 deleteform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.test.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: 05-10-2009
*
* XDoclet definition:
* @struts.form name="deleteForm"
*/
public class DeleteForm extends ActionForm {
/*
* Generated Methods
*/
/**
*
*/
private static final long serialVersionUID = 1L;
/** sex property */
private String sex;
/** password property */
private String password;
/** answerone property */
private String answerone;
/** card property */
private String card;
/** answertwo property */
private String answertwo;
/** telephone property */
private String telephone;
/** username property */
private String username;
/** questiontwo property */
private String questiontwo;
/** questionone property */
private String questionone;
/** emil property */
private String email;
/** popedom_id property */
private String popedom_id;
/** 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 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 password.
* @return String
*/
public String getPassword() {
return password;
}
/**
* Set the password.
* @param password The password to set
*/
public void setPassword(String password) {
this.password = password;
}
/**
* Returns the answerone.
* @return String
*/
public String getAnswerone() {
return answerone;
}
/**
* Set the answerone.
* @param answerone The answerone to set
*/
public void setAnswerone(String answerone) {
this.answerone = answerone;
}
/**
* Returns the card.
* @return String
*/
public String getCard() {
return card;
}
/**
* Set the card.
* @param card The card to set
*/
public void setCard(String card) {
this.card = card;
}
/**
* Returns the answertwo.
* @return String
*/
public String getAnswertwo() {
return answertwo;
}
/**
* Set the answertwo.
* @param answertwo The answertwo to set
*/
public void setAnswertwo(String answertwo) {
this.answertwo = answertwo;
}
/**
* 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 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 questiontwo.
* @return String
*/
public String getQuestiontwo() {
return questiontwo;
}
/**
* Set the questiontwo.
* @param questiontwo The questiontwo to set
*/
public void setQuestiontwo(String questiontwo) {
this.questiontwo = questiontwo;
}
/**
* Returns the questionone.
* @return String
*/
public String getQuestionone() {
return questionone;
}
/**
* Set the questionone.
* @param questionone The questionone to set
*/
public void setQuestionone(String questionone) {
this.questionone = questionone;
}
/**
* Returns the emil.
* @return String
*/
public String getEmail() {
return email;
}
/**
* Set the emil.
* @param emil The emil to set
*/
public void setEmail(String email) {
this.email = email;
}
/**
* Returns the popedom_id.
* @return String
*/
public String getPopedom_id() {
return popedom_id;
}
/**
* Set the popedom_id.
* @param popedom_id The popedom_id to set
*/
public void setPopedom_id(String popedom_id) {
this.popedom_id = popedom_id;
}
/**
* 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;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -