
git-svn-id: http://google-refine.googlecode.com/svn/trunk@7 7d457c2a-affb-35e4-300a-418c747d4874
8 lines
160 B
Java
8 lines
160 B
Java
package com.metaweb.gridlock.expr;
|
|
|
|
import java.util.Properties;
|
|
|
|
public interface Function {
|
|
public Object call(Properties bindings, Object[] args);
|
|
}
|