1de5e7c00e
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
14 lines
346 B
Java
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);
|
|
}
|