package org.simantics.structural2.scl; import org.simantics.db.ReadGraph; import org.simantics.db.exception.DatabaseException; import org.simantics.db.layer0.variable.Variable; public interface CompiledExpressionVariable { Object evaluate(ReadGraph graph, Variable context) throws DatabaseException; }