]> gerrit.simantics Code Review - simantics/platform.git/blob
8880085e3a0fbd933cd57235518d85ec339727f1
[simantics/platform.git] /
1 package org.simantics.spreadsheet.graph;
2
3 import org.simantics.spreadsheet.graph.parser.ast.AstArgList;
4
5 public interface CellFormulaFunction<T> {
6
7         T evaluate(CellValueVisitor visitor, AstArgList args);
8         
9 }