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

📄 controlcommand.java

📁 很棒的web服务器源代码
💻 JAVA
字号:
// Command.java// $Id: ControlCommand.java,v 1.6 2000/08/16 21:37:47 ylafon Exp $// (c) COPYRIGHT MIT and INRIA, 1996.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.jigsaw.ssi.commands ;import java.util.Dictionary;import org.w3c.util.ArrayDictionary;import org.w3c.jigsaw.http.Request;import org.w3c.jigsaw.ssi.SSIFrame;/** * This interface is used to supply implementations of SSI * commands. They have to be registered in a CommandRegistry, which in * turn is used by the SSIFrame. A control command is a command  * like loop or if witch can modify the way to execute commands. * A control command have to register is position and to know the * next position. A position is an integer, witch can be an array * index. * @see org.w3c.jigsaw.ssi.commands.CommandRegistry * @author Benoit Mahe <bmahe@sophia.inria.fr> */public interface ControlCommand extends Command {    /**     * register the command position in the structure     * witch store the SSIFrame.     */    public void setPosition(SSIFrame ssiframe,			    Request request,			    CommandRegistry registry,			    ArrayDictionary parameters,			    Dictionary variables,			    int position);    /**     * Give the next position in the structure witch     * store the SSIFrame.     * @return An integer     * @exception ControlCommandException if action failed.     */    public int jumpTo(SSIFrame ssiframe,		      Request request,		      CommandRegistry registry,		      ArrayDictionary parameters,		      Dictionary variables)	throws ControlCommandException;}

⌨️ 快捷键说明

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