KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > util > Predicate


1 /*
2  * Predicate.java
3  */

4
5 package polyglot.util;
6
7 /**
8  * Predicate
9  *
10  * Overview:
11  * This interface provides a general means for describing predicates
12  * about objects.
13  **/

14 public interface Predicate {
15   public boolean isTrue(Object JavaDoc o);
16 }
17
18
19
Popular Tags