hmi.util
Interface Predicate<T>

Type Parameters:
T - type of Objects on which the predivate can be applied

public interface Predicate<T>

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".

Author:
Job Zwiers

Method Summary
 boolean valid(T obj)
          The method that returns the value of the predicate for Object obj
 

Method Detail

valid

boolean valid(T obj)
The method that returns the value of the predicate for Object obj