?? queryform.java
字號:
package cpstruts;import org.apache.struts.action.*;import javax.servlet.http.*;public class QueryForm extends ActionForm { private String c_name; public String getC_name() { return c_name; } public void setC_name(String c_name) { this.c_name = c_name; } 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) { c_name = null; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -