net.sourceforge.nite.util
Interface Predicate


public interface Predicate

Predicates are Objects that implement a boolean test on Objects, in the form of their "valid" method. If some Object obj satifies some predicate pred, then pred.valid(obj) should yield "true".
Adapted from the parlevink package (HMI group, University of Twente)


Method Summary
 boolean valid(java.lang.Object obj)
           
 

Method Detail

valid

boolean valid(java.lang.Object obj)