home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Extras / OSpace / jgl.exe / jgl_2_0 / COM / objectspace / jgl / UnaryPredicateFunction.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-03-12  |  665 b   |  14 lines

  1. package COM.objectspace.jgl;
  2.  
  3. public final class UnaryPredicateFunction implements UnaryFunction {
  4.    UnaryPredicate myPredicate;
  5.  
  6.    public UnaryPredicateFunction(UnaryPredicate var1) {
  7.       this.myPredicate = var1;
  8.    }
  9.  
  10.    public Object execute(Object var1) {
  11.       return this.myPredicate.execute(var1) ? Boolean.TRUE : Boolean.FALSE;
  12.    }
  13. }
  14.