package com.onaro.util.jfc.tables.filter; /** * A substring-based or exact-match filter accepting string values containing "filter by" expression.

* Substring based filter accepts the rows having a value containing the "filter by" expression. If the "filter by" * expression is wrapped with double-quotes, then the filter will accept only those rows having a value that is exactly * the same as the text between the quotes.

* Both searches are case-insensitive. */ public class StringFilter extends AbstractFactoryFilter{ public StringFilter() { super(new StringFilterMatcherFactory()); } @Override public String getUsageTooltip() { return Messages.INSTANCE.getStringFilterUsageTooltip(); } }