01: package jsint;
02:
03: /**
04: * A support class for the Scheme->Java compiler
05: * @author Timothy J. Hickey, Copyright (c) 2000, tim@cs.brandeis.edu <a href="license.txt">license</a>
06: * subsequently modified by Jscheme project members
07: * licensed under zlib licence (see license.txt)
08: */
09: public interface Function {
10: public Object invoke(Pair args);
11:
12: public Object invoke1(Pair args);
13: }
|