]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/variable/VariablesImpl.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / variable / VariablesImpl.java
index f861edb357c2b6f065036ddd5f5ee4cb3d6abfac..db0e836b9de91de187015ff34960b7feed80f4c8 100644 (file)
@@ -1,49 +1,49 @@
-/*******************************************************************************\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.variable;\r
-\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.exception.DatabaseException;\r
-\r
-public final class VariablesImpl {\r
-\r
-       public final static int nextSeparator(String path, int startPosition) {\r
-               int len = path.length();\r
-               for (int i = startPosition; i < len; ++i) {\r
-                       char c = path.charAt(i);\r
-                       if (c == '/' || c == '#')\r
-                               return i;\r
-               }\r
-               return -1;\r
-       }\r
-       \r
-    public final static Resource getFirst(ReadGraph graph, Resource type, String path, int startPosition) throws DatabaseException {\r
-\r
-        int position = nextSeparator(path, startPosition);\r
-        if (position == -1) {\r
-            Resource r = graph.getResource(path);\r
-            if (graph.isInstanceOf(r, type))\r
-                return r;\r
-            return null;\r
-        }\r
-        \r
-        Resource r = graph.getResource(path.substring(0, position));\r
-        if (graph.isInstanceOf(r, type)) {\r
-            return r;\r
-        } else {\r
-            return getFirst(graph, type, path, position + 1);\r
-        }\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.db.layer0.variable;
+
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.exception.DatabaseException;
+
+public final class VariablesImpl {
+
+       public final static int nextSeparator(String path, int startPosition) {
+               int len = path.length();
+               for (int i = startPosition; i < len; ++i) {
+                       char c = path.charAt(i);
+                       if (c == '/' || c == '#')
+                               return i;
+               }
+               return -1;
+       }
+       
+    public final static Resource getFirst(ReadGraph graph, Resource type, String path, int startPosition) throws DatabaseException {
+
+        int position = nextSeparator(path, startPosition);
+        if (position == -1) {
+            Resource r = graph.getResource(path);
+            if (graph.isInstanceOf(r, type))
+                return r;
+            return null;
+        }
+        
+        Resource r = graph.getResource(path.substring(0, position));
+        if (graph.isInstanceOf(r, type)) {
+            return r;
+        } else {
+            return getFirst(graph, type, path, position + 1);
+        }
+
+    }
+
+}