Ejemplo n.º 1
0
 public boolean isPreFilter() {
   if ((matcher != null && matcher.isPreFilter())
       && !FilterType.TEXT.name().equalsIgnoreCase(getAttribut())) {
     return true;
   }
   return false;
 }
Ejemplo n.º 2
0
 public String toString() {
   String matcherAttribute = matcher != null ? matcher.getMatcherSymbol() : "";
   return "[" + attribut.toLowerCase() + matcherAttribute + "=\"" + matcher.getValue() + "\"]";
 }