tagreplacerule.java
来自「一个jsp网页布局框架」· Java 代码 · 共 30 行
JAVA
30 行
package com.opensymphony.module.sitemesh.html.rules;import com.opensymphony.module.sitemesh.html.BasicRule;import com.opensymphony.module.sitemesh.html.Tag;import com.opensymphony.module.sitemesh.html.CustomTag;/** * Very simple rule for replacing all occurences of one tag with another. * * <p>For example, to convert all <b> tags to <strong>:</p> * <p>html.addRule(new TagReplaceRule("b", "strong"));</p> * * @author Joe Walnes */public class TagReplaceRule extends BasicRule { private final String newTagName; public TagReplaceRule(String originalTagName, String newTagName) { super(originalTagName); this.newTagName = newTagName; } public void process(Tag tag) { CustomTag customTag = new CustomTag(tag); customTag.setName(newTagName); customTag.writeTo(currentBuffer()); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?