]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.graph.db/src/org/simantics/graph/db/ImportAdvisor.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.graph.db / src / org / simantics / graph / db / ImportAdvisor.java
index c8b8379af133dca1786d3483ea0f09a5662b38ec..8769b7597706372e3e0857db6f1c9e7e4e6bc82d 100644 (file)
@@ -1,69 +1,69 @@
-/*******************************************************************************\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.graph.db;\r
-\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.WriteOnlyGraph;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.graph.representation.Root;\r
-\r
-public class ImportAdvisor extends AbstractImportAdvisor2 {\r
-\r
-       @Override\r
-       public Resource getTarget() {\r
-               return null;\r
-       }\r
-       \r
-       @Override\r
-       public Resource analyzeRoot(ReadGraph graph, Root root) throws DatabaseException {\r
-               return null;\r
-       }\r
-       \r
-       @Override\r
-       public Resource createRoot(WriteOnlyGraph graph, Root root) throws DatabaseException {\r
-               return createRoot(graph, root, null);\r
-       }\r
-\r
-       @Override\r
-       public Resource createRoot(WriteOnlyGraph graph, Root root, Resource resource) throws DatabaseException {\r
-               if(resource == null) resource = graph.newResource();\r
-               addRootInfo(root, root.name, resource);\r
-               return resource;\r
-       }\r
-       \r
-    @Override\r
-    public void beforeWrite(WriteOnlyGraph graph, TransferableGraphImporter process) throws DatabaseException {\r
-    }\r
-\r
-    @Override\r
-    public void afterWrite(WriteOnlyGraph graph, TransferableGraphImporter process) throws DatabaseException {\r
-    }\r
-\r
-    @Override\r
-    public boolean allowImmutableModifications() {\r
-        return false;\r
-    }\r
-    \r
-    @Override\r
-    public Resource createChild(WriteOnlyGraph graph, TransferableGraphImporter process, Resource parent,\r
-            String name) throws DatabaseException {\r
-        return process.createChild(graph, parent, null, name);\r
-    }\r
-    \r
-    @Override\r
-    public Resource createChild(WriteOnlyGraph graph, TransferableGraphImporter process, Resource parent,\r
-               Resource child, String name) throws DatabaseException {\r
-        return process.createChild(graph, parent, child, name);\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.graph.db;
+
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.WriteOnlyGraph;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.graph.representation.Root;
+
+public class ImportAdvisor extends AbstractImportAdvisor2 {
+
+       @Override
+       public Resource getTarget() {
+               return null;
+       }
+       
+       @Override
+       public Resource analyzeRoot(ReadGraph graph, Root root) throws DatabaseException {
+               return null;
+       }
+       
+       @Override
+       public Resource createRoot(WriteOnlyGraph graph, Root root) throws DatabaseException {
+               return createRoot(graph, root, null);
+       }
+
+       @Override
+       public Resource createRoot(WriteOnlyGraph graph, Root root, Resource resource) throws DatabaseException {
+               if(resource == null) resource = graph.newResource();
+               addRootInfo(root, root.name, resource);
+               return resource;
+       }
+       
+    @Override
+    public void beforeWrite(WriteOnlyGraph graph, TransferableGraphImporter process) throws DatabaseException {
+    }
+
+    @Override
+    public void afterWrite(WriteOnlyGraph graph, TransferableGraphImporter process) throws DatabaseException {
+    }
+
+    @Override
+    public boolean allowImmutableModifications() {
+        return false;
+    }
+    
+    @Override
+    public Resource createChild(WriteOnlyGraph graph, TransferableGraphImporter process, Resource parent,
+            String name) throws DatabaseException {
+        return process.createChild(graph, parent, null, name);
+    }
+    
+    @Override
+    public Resource createChild(WriteOnlyGraph graph, TransferableGraphImporter process, Resource parent,
+               Resource child, String name) throws DatabaseException {
+        return process.createChild(graph, parent, child, name);
+    }
+    
+}