01: /*
02: * @(#)applyFunction.java 1.2 04/12/06
03: *
04: * Copyright (c) 1997-2004 Sun Microsystems, Inc. All Rights Reserved.
05: *
06: * See the file "LICENSE.txt" for information on usage and redistribution
07: * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
08: */
09: package org.pnuts.lib;
10:
11: import pnuts.lang.*;
12: import java.util.*;
13:
14: public class applyFunction extends call {
15: public applyFunction() {
16: super ("applyFunction");
17: }
18:
19: public String toString() {
20: return "function applyFunctoin(func, arguments)";
21: }
22: }
|