00001 /** 00002 * Function2 is an interface specification for a function object of 2 arguments. 00003 * The apply method is called when this function is to be applied to two 00004 * Objects. It returns an Object. 00005 */ 00006 00007 interface Function2 00008 { 00009 /** 00010 * Apply this Function1 to two Object arguments, returning an Object. 00011 */ 00012 00013 Object apply(Object x, Object y); 00014 } 00015
1.2.6 written by Dimitri van Heesch,
© 1997-2001