?? rightform.java
字號:
package com.ICT.AFC.user.forms;import org.apache.struts.action.*;import javax.servlet.http.*;public class RightForm extends ActionForm { private String rightDescription; private int rightId; private String rightRemark; public String getRightDescription() { return rightDescription; } public void setRightDescription(String rightDescription) { this.rightDescription = rightDescription; } public int getRightId() { return rightId; } public void setRightId(int rightId) { this.rightId = rightId; } public String getRightRemark() { return rightRemark; } public void setRightRemark(String rightRemark) { this.rightRemark = rightRemark; } public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { /**@todo: finish this method, this is just the skeleton.*/ return null; } public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -