]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/variable/RVIResolver.java
Merge "Add missing javax.servlet-api bundle requirement for jersey bundles"
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / variable / RVIResolver.java
1 package org.simantics.db.layer0.variable;
2
3 import org.simantics.db.ReadGraph;
4 import org.simantics.db.exception.DatabaseException;
5 import org.simantics.db.layer0.variable.RVI.RVIPart;
6
7 public interface RVIResolver {
8     RVI getRVI(ReadGraph graph, Variable variable) throws DatabaseException;
9     RVI getPossibleRVI(ReadGraph graph, Variable variable) throws DatabaseException;
10     Variable getVariable(ReadGraph graph, Variable context, RVIPart part) throws DatabaseException;
11 }