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 / SwappedBinaryPredicate.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-03-12  |  515 b   |  14 lines

  1. package COM.objectspace.jgl;
  2.  
  3. public final class SwappedBinaryPredicate implements BinaryPredicate {
  4.    BinaryPredicate predicate;
  5.  
  6.    public SwappedBinaryPredicate(BinaryPredicate var1) {
  7.       this.predicate = var1;
  8.    }
  9.  
  10.    public boolean execute(Object var1, Object var2) {
  11.       return this.predicate.execute(var2, var1);
  12.    }
  13. }
  14.