]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/util/DataValues.java
Fail safe import fixes made by Antti
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / util / DataValues.java
index 9e66fd732a04217d16f6d55dff25bf6764c49d8f..662122c5e82a8b940353bb06f33131b953f646b0 100644 (file)
@@ -1,37 +1,37 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.db.layer0.util;\r
-\r
-import org.simantics.databoard.Bindings;\r
-import org.simantics.databoard.binding.Binding;\r
-import org.simantics.databoard.type.Datatype;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.WriteGraph;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.layer0.Layer0;\r
-\r
-public class DataValues {\r
-\r
-       public static Resource createLiteral(WriteGraph g, Object value, Binding binding) throws DatabaseException {\r
-               Layer0 l0 = Layer0.getInstance(g);\r
-               Resource literal = g.newResource();\r
-               g.claim(literal, l0.InstanceOf, l0.Literal);\r
-               Resource dataType = g.newResource();\r
-               g.claim(dataType, l0.InstanceOf, l0.DataType);\r
-               g.claimValue(dataType, binding.type(), \r
-                               Bindings.getBindingUnchecked(Datatype.class));\r
-               g.claim(literal, l0.HasDataType, dataType);\r
-               g.claimValue(literal, value, binding);\r
-               return literal;\r
-       }\r
-               \r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.db.layer0.util;
+
+import org.simantics.databoard.Bindings;
+import org.simantics.databoard.binding.Binding;
+import org.simantics.databoard.type.Datatype;
+import org.simantics.db.Resource;
+import org.simantics.db.WriteGraph;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.layer0.Layer0;
+
+public class DataValues {
+
+       public static Resource createLiteral(WriteGraph g, Object value, Binding binding) throws DatabaseException {
+               Layer0 l0 = Layer0.getInstance(g);
+               Resource literal = g.newResource();
+               g.claim(literal, l0.InstanceOf, l0.Literal);
+               Resource dataType = g.newResource();
+               g.claim(dataType, l0.InstanceOf, l0.DataType);
+               g.claimValue(dataType, binding.type(), 
+                               Bindings.getBindingUnchecked(Datatype.class));
+               g.claim(literal, l0.HasDataType, dataType);
+               g.claimValue(literal, value, binding);
+               return literal;
+       }
+               
+}