git @ Cat's Eye Technologies yoob / master src / Criterion.java
master

Tree @master (Download .tar.gz)

Criterion.java @masterraw · history · blame

1
2
3
4
5
6
7
8
9
/*
 * A Criterion encapsulates a predicate about elements.
 * The source code in this file has been placed into the public domain.
 */
package tc.catseye.yoob;

public interface Criterion<E extends Element> {
    boolean qualifies(E e);
}