KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > jayasoft > ivy > filter > NoFilter


1 /*
2  * This file is subject to the licence found in LICENCE.TXT in the root directory of the project.
3  * Copyright Jayasoft 2005 - All rights reserved
4  *
5  * #SNAPSHOT#
6  */

7 package fr.jayasoft.ivy.filter;
8
9 public class NoFilter implements Filter {
10     public static final Filter INSTANCE = new NoFilter();
11     
12     private NoFilter() {
13     }
14     
15     public boolean accept(Object JavaDoc o) {
16         return true;
17     }
18
19 }
20
Popular Tags