]> gerrit.simantics Code Review - simantics/platform.git/blob - StatementAdapter.java
3f8a5d8baf3bbf34c84ed434c38b066ea2be70e2
[simantics/platform.git] / StatementAdapter.java
1 package org.simantics.db.layer0.adapter;
2
3 import org.simantics.db.ReadGraph;
4 import org.simantics.db.Statement;
5 import org.simantics.db.exception.DatabaseException;
6
7 public interface StatementAdapter {
8         Object getValue(ReadGraph graph, Statement statement) throws DatabaseException;
9 }