Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members  

Function2.java

Go to the documentation of this file.
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 

Generated at Wed Feb 19 23:28:36 2003 for OpenList by doxygen1.2.6 written by Dimitri van Heesch, © 1997-2001