1 4 package com.openedit.util.strainer; 5 6 7 11 public class BlankFilter implements Filter 12 { 13 14 17 public boolean passes(Object inObj) throws FilterException, ClassCastException  18 { 19 return true; 20 } 21 22 25 public void accept(FilterVisitor inFilterVisitor) throws FilterException 26 { 27 28 } 29 30 33 public Filter[] getFilters() 34 { 35 return null; 36 } 37 38 } 39 | Popular Tags |