1: package tijmp.filter; 2: 3: /** A filter of a class. 4: */ 5: public interface Filter { 6: /** Check if this filter accepts the given class. 7: */ 8: boolean accept(Class<?> c); 9: }