package com.onaro.util.jfc.tables.filter; /** * A filter that acts just like a StringFilter, except it works only against * the displayed text in a string of HTML. For instance given the input value * "Link one" * the filter would only operate on the value "Link one", not the HTML tags or attributes. * */ public class HtmlFilter extends AbstractFactoryFilter { public HtmlFilter() { super(new HtmlFilterMatcherFactory()); } }