]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.debug.browser/src/org/simantics/debug/browser/internal/rewriters/TypeHierarchyCreator.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.debug.browser / src / org / simantics / debug / browser / internal / rewriters / TypeHierarchyCreator.java
index 5e6df9ea403981c78e557fbe61dc7461d32bcf35..c0cd27550315d56b2090e778cd352e29ae7bbbaf 100644 (file)
@@ -1,68 +1,68 @@
-/*******************************************************************************\r
- * Copyright (c) 2016 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
- *     THTH ry - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.debug.browser.internal.rewriters;\r
-\r
-import java.util.ArrayList;\r
-\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.debug.browser.content.ResourceBrowserContent;\r
-import org.simantics.debug.browser.content.ResourceBrowserRewriter;\r
-import org.simantics.debug.browser.sections.RawStatementsSection;\r
-import org.simantics.debug.browser.sections.TypeHierarchySection;\r
-import org.simantics.debug.browser.sections.TypeHierarchySection.Node;\r
-import org.simantics.debug.browser.utils.ResourceInfo;\r
-import org.simantics.layer0.Layer0;\r
-\r
-public enum TypeHierarchyCreator implements ResourceBrowserRewriter {\r
-    INSTANCE;\r
-\r
-    @Override\r
-    public void rewrite(ReadGraph graph, ResourceBrowserContent content)\r
-            throws DatabaseException {\r
-        content.putSection(TypeHierarchySection.class,\r
-                new TypeHierarchySection(\r
-                        new Node(null, null, getSuper(graph, content.resource))\r
-                        ));\r
-        \r
-        // Remove raw statements that this section already shows\r
-        Layer0 L0 = Layer0.getInstance(graph);\r
-        RawStatementsSection rawStatementsSection = content.getSection(RawStatementsSection.class);\r
-        rawStatementsSection.statementsByPredicates.remove(L0.InstanceOf);\r
-        rawStatementsSection.statementsByPredicates.remove(L0.SubrelationOf);\r
-        rawStatementsSection.statementsByPredicates.remove(L0.Inherits);\r
-    }\r
-    \r
-    public Node[] getSuper(ReadGraph graph, Resource resource) throws DatabaseException {\r
-        ArrayList<Node> nodes = new ArrayList<Node>();\r
-        Layer0 L0 = Layer0.getInstance(graph);\r
-        for(Resource s : graph.getObjects(resource, L0.InstanceOf))\r
-            nodes.add(new Node(":", new ResourceInfo(graph, s), getSuper(graph, s)));\r
-        for(Resource s : graph.getObjects(resource, L0.Inherits)) {\r
-            if(s.equals(L0.Entity))\r
-                continue;\r
-            nodes.add(new Node("&lt;T", new ResourceInfo(graph, s), getSuper(graph, s)));\r
-        }\r
-        for(Resource s : graph.getObjects(resource, L0.SubrelationOf)) {\r
-            if(s.equals(L0.IsWeaklyRelatedTo))\r
-                continue;\r
-            nodes.add(new Node("&lt;R", new ResourceInfo(graph, s), getSuper(graph, s)));\r
-        }\r
-        return nodes.toArray(new Node[nodes.size()]);\r
-    }\r
-\r
-    @Override\r
-    public double getPriority() {\r
-        return 1;\r
-    }\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2016 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:
+ *     THTH ry - initial API and implementation
+ *******************************************************************************/
+package org.simantics.debug.browser.internal.rewriters;
+
+import java.util.ArrayList;
+
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.debug.browser.content.ResourceBrowserContent;
+import org.simantics.debug.browser.content.ResourceBrowserRewriter;
+import org.simantics.debug.browser.sections.RawStatementsSection;
+import org.simantics.debug.browser.sections.TypeHierarchySection;
+import org.simantics.debug.browser.sections.TypeHierarchySection.Node;
+import org.simantics.debug.browser.utils.ResourceInfo;
+import org.simantics.layer0.Layer0;
+
+public enum TypeHierarchyCreator implements ResourceBrowserRewriter {
+    INSTANCE;
+
+    @Override
+    public void rewrite(ReadGraph graph, ResourceBrowserContent content)
+            throws DatabaseException {
+        content.putSection(TypeHierarchySection.class,
+                new TypeHierarchySection(
+                        new Node(null, null, getSuper(graph, content.resource))
+                        ));
+        
+        // Remove raw statements that this section already shows
+        Layer0 L0 = Layer0.getInstance(graph);
+        RawStatementsSection rawStatementsSection = content.getSection(RawStatementsSection.class);
+        rawStatementsSection.statementsByPredicates.remove(L0.InstanceOf);
+        rawStatementsSection.statementsByPredicates.remove(L0.SubrelationOf);
+        rawStatementsSection.statementsByPredicates.remove(L0.Inherits);
+    }
+    
+    public Node[] getSuper(ReadGraph graph, Resource resource) throws DatabaseException {
+        ArrayList<Node> nodes = new ArrayList<Node>();
+        Layer0 L0 = Layer0.getInstance(graph);
+        for(Resource s : graph.getObjects(resource, L0.InstanceOf))
+            nodes.add(new Node(":", new ResourceInfo(graph, s), getSuper(graph, s)));
+        for(Resource s : graph.getObjects(resource, L0.Inherits)) {
+            if(s.equals(L0.Entity))
+                continue;
+            nodes.add(new Node("&lt;T", new ResourceInfo(graph, s), getSuper(graph, s)));
+        }
+        for(Resource s : graph.getObjects(resource, L0.SubrelationOf)) {
+            if(s.equals(L0.IsWeaklyRelatedTo))
+                continue;
+            nodes.add(new Node("&lt;R", new ResourceInfo(graph, s), getSuper(graph, s)));
+        }
+        return nodes.toArray(new Node[nodes.size()]);
+    }
+
+    @Override
+    public double getPriority() {
+        return 1;
+    }
+}