// $Id: Predicate.java,v 1.2 1999/11/05 19:21:44 leavens Exp $

package lib;

public interface Predicate {
    boolean value(Object x);
}
