?? action.java
字號:
package forum;
import javax.servlet.http.*;
/**
* The superclass for all command/action components.
*
* @author Simon Brown
*/
public abstract class Action {
/**
* Peforms the processing associated with this action.
*
* @param request the HttpServletRequest instance
* @param response the HttpServletResponse instance
* @return the name of the next view
*/
public abstract String process(HttpServletRequest request, HttpServletResponse response);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -