]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/variable/ConstantValueStandardGraphPropertyVariable.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / variable / ConstantValueStandardGraphPropertyVariable.java
index 3b063f1a44caa940d39f83410cc599d064d4fcdb..776ba588eb220f7775b804e0cd51b6719fa7a04c 100644 (file)
@@ -1,54 +1,54 @@
-package org.simantics.db.layer0.variable;\r
-\r
-import org.simantics.databoard.Bindings;\r
-import org.simantics.databoard.adapter.AdaptException;\r
-import org.simantics.databoard.binding.Binding;\r
-import org.simantics.databoard.type.Datatype;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.WriteGraph;\r
-import org.simantics.db.exception.DatabaseException;\r
-\r
-public class ConstantValueStandardGraphPropertyVariable extends StandardGraphPropertyVariable {\r
-\r
-       final private Object value;\r
-       final private Datatype datatype;\r
-\r
-       public ConstantValueStandardGraphPropertyVariable(ReadGraph graph, Variable parent, Resource parentResource, Resource predicate, Object value, Datatype datatype) throws DatabaseException {\r
-               super(graph, parent, null, parentResource, predicate);\r
-               this.value = value;\r
-               this.datatype = datatype;\r
-       }\r
-       \r
-       @SuppressWarnings("unchecked")\r
-       @Override\r
-       public <T> T getValue(ReadGraph graph) throws DatabaseException {\r
-               return (T)value;\r
-       }\r
-       \r
-       @SuppressWarnings("unchecked")\r
-       @Override\r
-       public <T> T getValue(ReadGraph graph, Binding binding) throws DatabaseException {\r
-               try {\r
-                       return (T)Bindings.adapt(value, Bindings.getBinding(datatype), binding);\r
-               } catch (AdaptException e) {\r
-                       throw new DatabaseException(e);\r
-               }\r
-       }\r
-       \r
-       @Override\r
-       public Datatype getDatatype(ReadGraph graph) throws DatabaseException {\r
-               return datatype;\r
-       }\r
-\r
-       @Override\r
-       public void setValue(WriteGraph graph, Object value) throws DatabaseException {\r
-               throw new DatabaseException("setValue is not supported.");\r
-       }\r
-       \r
-       @Override\r
-       public void setValue(WriteGraph graph, Object value, Binding binding) throws DatabaseException {\r
-               throw new DatabaseException("setValue is not supported.");\r
-       }\r
-       \r
-}\r
+package org.simantics.db.layer0.variable;
+
+import org.simantics.databoard.Bindings;
+import org.simantics.databoard.adapter.AdaptException;
+import org.simantics.databoard.binding.Binding;
+import org.simantics.databoard.type.Datatype;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.WriteGraph;
+import org.simantics.db.exception.DatabaseException;
+
+public class ConstantValueStandardGraphPropertyVariable extends StandardGraphPropertyVariable {
+
+       final private Object value;
+       final private Datatype datatype;
+
+       public ConstantValueStandardGraphPropertyVariable(ReadGraph graph, Variable parent, Resource parentResource, Resource predicate, Object value, Datatype datatype) throws DatabaseException {
+               super(graph, parent, null, parentResource, predicate);
+               this.value = value;
+               this.datatype = datatype;
+       }
+       
+       @SuppressWarnings("unchecked")
+       @Override
+       public <T> T getValue(ReadGraph graph) throws DatabaseException {
+               return (T)value;
+       }
+       
+       @SuppressWarnings("unchecked")
+       @Override
+       public <T> T getValue(ReadGraph graph, Binding binding) throws DatabaseException {
+               try {
+                       return (T)Bindings.adapt(value, Bindings.getBinding(datatype), binding);
+               } catch (AdaptException e) {
+                       throw new DatabaseException(e);
+               }
+       }
+       
+       @Override
+       public Datatype getDatatype(ReadGraph graph) throws DatabaseException {
+               return datatype;
+       }
+
+       @Override
+       public void setValue(WriteGraph graph, Object value) throws DatabaseException {
+               throw new DatabaseException("setValue is not supported.");
+       }
+       
+       @Override
+       public void setValue(WriteGraph graph, Object value, Binding binding) throws DatabaseException {
+               throw new DatabaseException("setValue is not supported.");
+       }
+       
+}