⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 actionhandler.java~

📁 J2EE & Tomcat books published by hope
💻 JAVA~
字号:
/* */package com.sun.j2ee.workflow.control;import com.sun.j2ee.workflow.control.exceptions.WorkflowActionException;import javax.servlet.http.HttpServletRequest;import javax.servlet.ServletContext;/** * This class is the base interface to request handlers on the * web tier. **/public interface ActionHandler extends java.io.Serializable {    public void setServletContext(ServletContext context);    public void doStart(HttpServletRequest request);    public void perform(HttpServletRequest request) throws WorkflowActionException;    public void doEnd(HttpServletRequest request);}

⌨️ 快捷键说明

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