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

Function1.java

Go to the documentation of this file.
00001 /**
00002  * Function1 is an interface specification for a function object of 1 argument.
00003  * The apply method is called when this function is to be applied to an 
00004  * Object.  It returns an Object.
00005  */
00006 
00007 interface Function1
00008 {
00009 
00010 /**
00011  * Apply this Function1 to an Object argument, returning an Object.
00012  */
00013 
00014 Object apply(Object x);
00015 
00016 }
00017 

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