textfilter.java

来自「OS(OpenSymphony)的SiteMesh是一个用来在JSP中实现页面布」· Java 代码 · 共 19 行

JAVA
19
字号
package com.opensymphony.module.sitemesh.html;/** * TextFilters can be added to the HTMLProcessor (or specific States) and allow a simple means of filtering text content. * * <p>More than one TextFilter may be added to each HTMLProcessor/State and they will be called in the order they were added.</p> * * @author Joe Walnes * * @see HTMLProcessor * @see State * @see com.opensymphony.module.sitemesh.html.rules.RegexReplacementTextFilter */public interface TextFilter {    String filter(String content);    }

⌨️ 快捷键说明

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