]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/variable/NodeManagerVariableBuilder.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / variable / NodeManagerVariableBuilder.java
index d49869464e8a1e116f51f48a884af1c9fce54cde..157d42529f0361032618e6e44e5ed17da2b05b46 100644 (file)
@@ -1,32 +1,32 @@
-package org.simantics.db.layer0.variable;\r
-\r
-import org.simantics.databoard.Bindings;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.layer0.Layer0;\r
-\r
-abstract public class NodeManagerVariableBuilder implements VariableBuilder {\r
-\r
-    @Override\r
-    public Variable buildChild(ReadGraph graph, Variable parent, VariableNode node, Resource child) throws DatabaseException {\r
-       Layer0 L0 = Layer0.getInstance(graph);\r
-       String childName = graph.getRelatedValue(child, L0.HasName, Bindings.STRING);\r
-        String sessionName = parent.getURI(graph) + "/" + childName;\r
-        return createChild(graph, parent, sessionName, child);\r
-    }\r
-    \r
-    protected Variable createChild(ReadGraph graph, Variable parent, String sessionName, Resource child) throws DatabaseException {\r
-        NodeSupport<?> support = getNodeSupport(graph, sessionName);\r
-        return new StandardGraphChildVariable(parent, new VariableNode(support, getRoot(graph, support, sessionName)), child);\r
-    }\r
-\r
-    @Override\r
-    public Variable buildProperty(ReadGraph graph, Variable parent, VariableNode node, Resource subject, Resource predicate) throws DatabaseException {\r
-        throw new UnsupportedOperationException();\r
-    }\r
-    \r
-    protected abstract NodeSupport<?> getNodeSupport(ReadGraph graph, String sessionName) throws DatabaseException;\r
-    protected abstract Object getRoot(ReadGraph graph, NodeSupport<?> support, String sessionName) throws DatabaseException;\r
-\r
-}\r
+package org.simantics.db.layer0.variable;
+
+import org.simantics.databoard.Bindings;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.layer0.Layer0;
+
+abstract public class NodeManagerVariableBuilder implements VariableBuilder {
+
+    @Override
+    public Variable buildChild(ReadGraph graph, Variable parent, VariableNode node, Resource child) throws DatabaseException {
+       Layer0 L0 = Layer0.getInstance(graph);
+       String childName = graph.getRelatedValue(child, L0.HasName, Bindings.STRING);
+        String sessionName = parent.getURI(graph) + "/" + childName;
+        return createChild(graph, parent, sessionName, child);
+    }
+    
+    protected Variable createChild(ReadGraph graph, Variable parent, String sessionName, Resource child) throws DatabaseException {
+        NodeSupport<?> support = getNodeSupport(graph, sessionName);
+        return new StandardGraphChildVariable(parent, new VariableNode(support, getRoot(graph, support, sessionName)), child);
+    }
+
+    @Override
+    public Variable buildProperty(ReadGraph graph, Variable parent, VariableNode node, Resource subject, Resource predicate) throws DatabaseException {
+        throw new UnsupportedOperationException();
+    }
+    
+    protected abstract NodeSupport<?> getNodeSupport(ReadGraph graph, String sessionName) throws DatabaseException;
+    protected abstract Object getRoot(ReadGraph graph, NodeSupport<?> support, String sessionName) throws DatabaseException;
+
+}