]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.layer0.utils/src/org/simantics/layer0/utils/writer/GraphWriterPartial.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.layer0.utils / src / org / simantics / layer0 / utils / writer / GraphWriterPartial.java
index dec59730762eaf98a536a4a1667c74b68d03e6a1..1fa7002ea03083155622a19c3dbf5384dba62f23 100644 (file)
@@ -1,87 +1,87 @@
-/*******************************************************************************\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.layer0.utils.writer;\r
-\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.service.ClusteringSupport;\r
-import org.simantics.layer0.Layer0;\r
-\r
-public abstract class GraphWriterPartial implements GraphWriter {\r
-\r
-       ClusteringSupport clustering;\r
-       ReadGraph graph;\r
-       Layer0 l0;\r
-       \r
-       public GraphWriterPartial(ReadGraph graph) {    \r
-               this.graph = graph;\r
-               this.l0 = Layer0.getInstance(graph);\r
-               clustering = graph.getSession().getService(ClusteringSupport.class);\r
-       }\r
-       \r
-       @Override\r
-       public ReadGraph getGraph() {\r
-               return graph;\r
-       }\r
-       \r
-//     @Override\r
-//     public GraphWriter create(Resource type) {\r
-//             return create(type);\r
-//             return let(b.InstanceOf, type);\r
-//     }\r
-       \r
-       @Override\r
-       public GraphWriter create(String name, Resource type) throws DatabaseException  {\r
-               create(type);\r
-               return let(l0.HasName, name, l0.String);\r
-       }\r
-       \r
-       @Override\r
-       public GraphWriter create(int clusterHint, String name, Resource type) throws DatabaseException {\r
-               create(clusterHint, type);\r
-               return let(clusterHint, l0.HasName, name, l0.String);\r
-       }\r
-       \r
-       @Override\r
-       public GraphWriter create(int clusterHint) throws DatabaseException {\r
-               return create();\r
-       }\r
-       \r
-       @Override\r
-       public GraphWriter create(int clusterHint, Resource type) throws DatabaseException {\r
-               return create(type);\r
-       }\r
-       \r
-       @Override\r
-       public GraphWriter let(int clusterHint, Resource p, Object value,\r
-               Resource dataType) throws DatabaseException {\r
-               return let(p, value, dataType);\r
-       }\r
-       \r
-       @Override\r
-       public GraphWriter createLiteral(int clusterHint, Object value,\r
-               Resource dataType) throws DatabaseException {\r
-               return createLiteral(value, dataType);\r
-       }\r
-\r
-    @Override\r
-    public GraphWriter stat(Resource s, Resource p, Resource o) throws DatabaseException {\r
-        return handle(s).let(p, o);     \r
-    }  \r
-    \r
-    @Override\r
-    public GraphWriter createInverse(int clusterHint, Resource r) throws DatabaseException {\r
-       return createInverse(r);\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.layer0.utils.writer;
+
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.service.ClusteringSupport;
+import org.simantics.layer0.Layer0;
+
+public abstract class GraphWriterPartial implements GraphWriter {
+
+       ClusteringSupport clustering;
+       ReadGraph graph;
+       Layer0 l0;
+       
+       public GraphWriterPartial(ReadGraph graph) {    
+               this.graph = graph;
+               this.l0 = Layer0.getInstance(graph);
+               clustering = graph.getSession().getService(ClusteringSupport.class);
+       }
+       
+       @Override
+       public ReadGraph getGraph() {
+               return graph;
+       }
+       
+//     @Override
+//     public GraphWriter create(Resource type) {
+//             return create(type);
+//             return let(b.InstanceOf, type);
+//     }
+       
+       @Override
+       public GraphWriter create(String name, Resource type) throws DatabaseException  {
+               create(type);
+               return let(l0.HasName, name, l0.String);
+       }
+       
+       @Override
+       public GraphWriter create(int clusterHint, String name, Resource type) throws DatabaseException {
+               create(clusterHint, type);
+               return let(clusterHint, l0.HasName, name, l0.String);
+       }
+       
+       @Override
+       public GraphWriter create(int clusterHint) throws DatabaseException {
+               return create();
+       }
+       
+       @Override
+       public GraphWriter create(int clusterHint, Resource type) throws DatabaseException {
+               return create(type);
+       }
+       
+       @Override
+       public GraphWriter let(int clusterHint, Resource p, Object value,
+               Resource dataType) throws DatabaseException {
+               return let(p, value, dataType);
+       }
+       
+       @Override
+       public GraphWriter createLiteral(int clusterHint, Object value,
+               Resource dataType) throws DatabaseException {
+               return createLiteral(value, dataType);
+       }
+
+    @Override
+    public GraphWriter stat(Resource s, Resource p, Resource o) throws DatabaseException {
+        return handle(s).let(p, o);     
+    }  
+    
+    @Override
+    public GraphWriter createInverse(int clusterHint, Resource r) throws DatabaseException {
+       return createInverse(r);
+    }
+    
+}