]> gerrit.simantics Code Review - simantics/interop.git/blobdiff - org.simantics.interop.mapping/src/org/simantics/interop/mapping/WriteGraphProxy.java
Fixed interop WriteGraph implementations after changes to ReadGraph.
[simantics/interop.git] / org.simantics.interop.mapping / src / org / simantics / interop / mapping / WriteGraphProxy.java
index 1fff2a287f03a41f83172e99644a4991f7b51b70..55346537774f6da7ee8926e68f0e890ec2d418f3 100644 (file)
@@ -2762,4 +2762,24 @@ public class WriteGraphProxy implements WriteGraph {
                return graph.isImmutable(resource);\r
        }\r
 \r
+    @Override\r
+    public <T> T getValue2(Resource subject, Object context) throws DatabaseException {\r
+        return graph.getValue2(subject, context);\r
+    }\r
+\r
+    @Override\r
+    public <T> T getPossibleValue2(Resource subject, Object context) throws DatabaseException {\r
+        return graph.getPossibleValue2(subject, context);\r
+    }\r
+\r
+    @Override\r
+    public <T> T getValue2(Resource subject, Object context, Binding binding) throws DatabaseException {\r
+        return graph.getValue2(subject, context, binding);\r
+    }\r
+\r
+    @Override\r
+    public <T> T getPossibleValue2(Resource subject, Object context, Binding binding) throws DatabaseException {\r
+        return graph.getPossibleValue2(subject, context, binding);\r
+    }\r
+\r
 }\r