]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.debug.browser/src/org/simantics/debug/browser/sections/ResourceInfoSection.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.debug.browser / src / org / simantics / debug / browser / sections / ResourceInfoSection.java
index 54f531237f3a132dd330544f89157ed514c2fe28..2d4b33485db6de01039f6974190a183fb71b89b1 100644 (file)
@@ -1,60 +1,60 @@
-/*******************************************************************************\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.sections;\r
-\r
-import java.io.PrintWriter;\r
-\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.debug.browser.utils.Escapes;\r
-import org.simantics.debug.browser.utils.ValueInfo;\r
-\r
-public class ResourceInfoSection implements ResourceBrowserSection {\r
-\r
-    ValueInfo valueInfo;\r
-    boolean immutable;\r
-\r
-    public ResourceInfoSection(ValueInfo valueInfo, boolean immutable) {\r
-        this.valueInfo = valueInfo;\r
-        this.immutable = immutable;\r
-    }\r
-\r
-    @Override\r
-    public double getPriority() {\r
-        return 2;\r
-    }\r
-\r
-    @Override\r
-    public void toHtml(ReadGraph graph, PrintWriter out) throws DatabaseException {\r
-        out.println("<div id=\"resourceInfoContent\">");\r
-        out.println("<table>");\r
-        if (immutable) {\r
-            out.println("<tr><td colspan=\"2\" id=\"immutable\">IMMUTABLE</td></tr>");\r
-        }\r
-        if (valueInfo != null) {\r
-            if (valueInfo.datatype != null) {\r
-                out.print("<tr>");\r
-                out.print("<td class=\"top_key\">Attached value data type</td>");\r
-                out.print("<td class=\"resourceType\">");\r
-                out.print(Escapes.html(valueInfo.datatype));\r
-                out.println("</td></tr>");\r
-            }\r
-            out.print("<tr><td class=\"top_key\">Attached value</td>");\r
-            out.print("<td id=\"attachedValue\">");\r
-            out.print(Escapes.html(valueInfo.value));\r
-            out.println("</td></tr>");\r
-        }\r
-        out.println("</table>");\r
-        out.println("</div>");\r
-    }\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.sections;
+
+import java.io.PrintWriter;
+
+import org.simantics.db.ReadGraph;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.debug.browser.utils.Escapes;
+import org.simantics.debug.browser.utils.ValueInfo;
+
+public class ResourceInfoSection implements ResourceBrowserSection {
+
+    ValueInfo valueInfo;
+    boolean immutable;
+
+    public ResourceInfoSection(ValueInfo valueInfo, boolean immutable) {
+        this.valueInfo = valueInfo;
+        this.immutable = immutable;
+    }
+
+    @Override
+    public double getPriority() {
+        return 2;
+    }
+
+    @Override
+    public void toHtml(ReadGraph graph, PrintWriter out) throws DatabaseException {
+        out.println("<div id=\"resourceInfoContent\">");
+        out.println("<table>");
+        if (immutable) {
+            out.println("<tr><td colspan=\"2\" id=\"immutable\">IMMUTABLE</td></tr>");
+        }
+        if (valueInfo != null) {
+            if (valueInfo.datatype != null) {
+                out.print("<tr>");
+                out.print("<td class=\"top_key\">Attached value data type</td>");
+                out.print("<td class=\"resourceType\">");
+                out.print(Escapes.html(valueInfo.datatype));
+                out.println("</td></tr>");
+            }
+            out.print("<tr><td class=\"top_key\">Attached value</td>");
+            out.print("<td id=\"attachedValue\">");
+            out.print(Escapes.html(valueInfo.value));
+            out.println("</td></tr>");
+        }
+        out.println("</table>");
+        out.println("</div>");
+    }
+
+}