action.java

来自「网上拍卖系统」· Java 代码 · 共 21 行

JAVA
21
字号
package auction.web.actions;import java.util.Map;/** * A typical controller interface in an MVC framework. * * @author Christian Bauer */public interface Action {    /**     * Process the request or event.     *     * @param event the event to be processed, contains input, might receive output     * @return String an indicator of the process outcome, used to lookup the forward     */    public String execute(Map event);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?