?? role1form.java
字號(hào):
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package gdpe.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-21-2007
*
* XDoclet definition:
* @struts.form name="role1Form"
*/
public class Role1Form extends ActionForm {
/*
* Generated fields
*/
/** CHROLEDESC property */
private String CHROLEDESC;
/** CHROLENAME property */
private String CHROLENAME;
/** CHROLECODE property */
private String CHROLECODE;
/*
* 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 CHROLEDESC.
* @return String
*/
public String getCHROLEDESC() {
return CHROLEDESC;
}
/**
* Set the CHROLEDESC.
* @param CHROLEDESC The CHROLEDESC to set
*/
public void setCHROLEDESC(String CHROLEDESC) {
this.CHROLEDESC = CHROLEDESC;
}
/**
* Returns the CHROLENAME.
* @return String
*/
public String getCHROLENAME() {
return CHROLENAME;
}
/**
* Set the CHROLENAME.
* @param CHROLENAME The CHROLENAME to set
*/
public void setCHROLENAME(String CHROLENAME) {
this.CHROLENAME = CHROLENAME;
}
/**
* Returns the CHROLECODE.
* @return String
*/
public String getCHROLECODE() {
return CHROLECODE;
}
/**
* Set the CHROLECODE.
* @param CHROLECODE The CHROLECODE to set
*/
public void setCHROLECODE(String CHROLECODE) {
this.CHROLECODE = CHROLECODE;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -