2010-08-04 01:01:18 +02:00
|
|
|
package com.google.gridworks.gel;
|
2010-05-05 01:24:48 +02:00
|
|
|
|
|
|
|
import java.util.Properties;
|
|
|
|
|
2010-08-04 01:01:18 +02:00
|
|
|
import com.google.gridworks.Jsonizable;
|
2010-05-05 01:24:48 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface for functions. When a function is called, its arguments have already
|
|
|
|
* been evaluated down into non-error values.
|
|
|
|
*/
|
|
|
|
public interface Function extends Jsonizable {
|
|
|
|
public Object call(Properties bindings, Object[] args);
|
|
|
|
}
|