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

  1. package COM.objectspace.jgl;
  2.  
  3. public final class BindSecond implements UnaryFunction {
  4.    BinaryFunction myFunction;
  5.    Object myObject;
  6.  
  7.    public BindSecond(BinaryFunction var1, Object var2) {
  8.       this.myFunction = var1;
  9.       this.myObject = var2;
  10.    }
  11.  
  12.    public Object execute(Object var1) {
  13.       return this.myFunction.execute(var1, this.myObject);
  14.    }
  15. }
  16.