tagrule.java

来自「一个jsp网页布局框架」· Java 代码 · 共 15 行

JAVA
15
字号
package com.opensymphony.module.sitemesh.html;public interface TagRule {    void setContext(HTMLProcessorContext context);    /**     * Called by the HTMLProcessor to determine if a rule should be called for a given tag.     *     * The name parameter will always be passed in lowercase.      */    boolean shouldProcess(String name);    void process(Tag tag);}

⌨️ 快捷键说明

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