]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.simulation/src/org/simantics/simulation/data/GraphHandle.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.simulation / src / org / simantics / simulation / data / GraphHandle.java
1 package org.simantics.simulation.data;
2
3 import org.simantics.databoard.binding.Binding;
4 import org.simantics.db.ReadGraph;
5 import org.simantics.db.exception.DatabaseException;
6
7 public interface GraphHandle {
8
9     String key();
10     Binding binding(ReadGraph graph) throws DatabaseException;
11     Object getValue(ReadGraph graph) throws DatabaseException;
12
13 }