RandomSec/main/src/com/google/refine/grel/Function.java
David Huynh 1de5e7c00e Renamed package gel to grel.
Replaced gel with grel in other places in the code base while maintaining backward compatibility.
Changed layout in expression preview dialog to accommodate long GREL name.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@1442 7d457c2a-affb-35e4-300a-418c747d4874
2010-10-07 05:19:35 +00:00

14 lines
346 B
Java

package com.google.refine.grel;
import java.util.Properties;
import com.google.refine.Jsonizable;
/**
* 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);
}