changed "extends DefaultFunctionImpl" to "implements Function"

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353724 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Amol S. Deshmukh 2005-06-22 20:45:54 +00:00
parent d8ea7f98e3
commit 6c938f3c8a

View File

@ -15,7 +15,7 @@ import org.apache.poi.hssf.record.formula.eval.ValueEval;
* @author
*
*/
public class Column extends DefaultFunctionImpl {
public class Column implements Function {
public Eval evaluate(Eval[] evals, int srcCellRow, short srcCellCol) {
ValueEval retval = null;
int cnum = -1;