]> gerrit.simantics Code Review - simantics/platform.git/blob - VariableFactory.java
190b183a8e077570b7c1df699c00b4ed79f4147c
[simantics/platform.git] / VariableFactory.java
1 package org.simantics.db.layer0.variable;
2
3 import java.util.Collection;
4
5 import org.simantics.db.ReadGraph;
6 import org.simantics.db.exception.DatabaseException;
7
8 public interface VariableFactory {
9         
10         Collection<Variable> evaluate(ReadGraph graph, Variable variable) throws DatabaseException;
11
12 }