?? managerform.java
字號(hào):
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package cn.jack.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: 04-02-2007
*
* XDoclet definition:
* @struts.form name="managerForm"
*/
public class ManagerForm extends ActionForm {
/*
* Generated fields
*/
/** retime property */
private String retime;
/** re property */
private String re;
/** id property */
private int id;
/** userpass property */
private String userpass;
/** username property */
private String username;
/** userpasa property */
private String userpasa;
/*
* 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 userpass.
* @return String
*/
public String getUserpass() {
return userpass;
}
/**
* Set the userpass.
* @param userpass The userpass to set
*/
public void setUserpass(String userpass) {
this.userpass = userpass;
}
/**
* 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 userpasa.
* @return String
*/
public String getUserpasa() {
return userpasa;
}
/**
* Set the userpasa.
* @param userpasa The userpasa to set
*/
public void setUserpasa(String userpasa) {
this.userpasa = userpasa;
}
/**
* Returns the retime.
* @return String
*/
public String getRetime() {
return retime;
}
/**
* Set the retime.
* @param retime The retime to set
*/
public void setRetime(String retime) {
this.retime = retime;
}
/**
* Returns the re.
* @return String
*/
public String getRe() {
return re;
}
/**
* Set the re.
* @param re The re to set
*/
public void setRe(String re) {
this.re = re;
}
/**
* Returns the id.
* @return int
*/
public int getId() {
return id;
}
/**
* Set the id.
* @param id The id to set
*/
public void setId(int id) {
this.id = id;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -