KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > util > strainer > BlankFilter


1 /*
2  * Created on Jan 13, 2005
3  */

4 package com.openedit.util.strainer;
5
6
7 /**
8  * @author cburkey
9  *
10  */

11 public class BlankFilter implements Filter
12 {
13
14     /* (non-javadoc)
15      * @see com.openedit.util.strainer.Filter#passes(java.lang.Object)
16      */

17     public boolean passes(Object JavaDoc inObj) throws FilterException, ClassCastException JavaDoc
18     {
19         return true;
20     }
21
22     /* (non-javadoc)
23      * @see com.openedit.util.strainer.Filter#accept(com.openedit.util.strainer.FilterVisitor)
24      */

25     public void accept(FilterVisitor inFilterVisitor) throws FilterException
26     {
27         
28     }
29
30     /* (non-javadoc)
31      * @see com.openedit.util.strainer.Filter#getFilters()
32      */

33     public Filter[] getFilters()
34     {
35         return null;
36     }
37
38 }
39
Popular Tags