?? roleform.java
字號:
package org.imm.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;
public class RoleForm extends ActionForm {
/*
* Generated fields
*/
/** rolename property */
private String rolename;
/** description property */
private String description;
/** roleid property */
private Integer roleid;
/*
* 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 rolename.
* @return String
*/
public String getRolename() {
return rolename;
}
/**
* Set the rolename.
* @param rolename The rolename to set
*/
public void setRolename(String rolename) {
this.rolename = rolename;
}
/**
* Returns the description.
* @return String
*/
public String getDescription() {
return description;
}
/**
* Set the description.
* @param description The description to set
*/
public void setDescription(String description) {
this.description = description;
}
/**
* Returns the roleid.
* @return Integer
*/
public Integer getRoleid() {
return roleid;
}
/**
* Set the roleid.
* @param roleid The roleid to set
*/
public void setRoleid(Integer roleid) {
this.roleid = roleid;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -