]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/chart/property/AvailableTemplateFactory.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / chart / property / AvailableTemplateFactory.java
index 0f9eb00893e19dd566966cbba8ebedd1b7e90994..0bec91105b4e25e3d8a1999b697e8bb70ea0fd5e 100644 (file)
@@ -1,51 +1,51 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2011 Association for Decentralized Information Management in\r
- * 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.modeling.ui.chart.property;\r
-\r
-import java.util.Collections;\r
-import java.util.Map;\r
-import java.util.TreeMap;\r
-\r
-import org.simantics.browsing.ui.swt.widgets.impl.ReadFactoryImpl;\r
-import org.simantics.charts.ontology.ChartResource;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.layer0.adapter.Instances;\r
-import org.simantics.db.layer0.request.PossibleModel;\r
-import org.simantics.layer0.Layer0;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class AvailableTemplateFactory extends ReadFactoryImpl<Resource, Map<String, Object>> {\r
-\r
-    @Override\r
-    public Map<String, Object> perform(ReadGraph graph, Resource input) throws DatabaseException {\r
-        Layer0 L0 = Layer0.getInstance(graph);\r
-        ChartResource CHART = ChartResource.getInstance(graph);\r
-        Instances query = graph.adapt(CHART.ChartTemplate, Instances.class);\r
-        Resource model = graph.syncRequest(new PossibleModel(input));\r
-        if (model == null)\r
-            return Collections.emptyMap();\r
-        Map<String, Object> result = new TreeMap<String, Object>();\r
-        for (Resource template : query.find(graph, model)) {\r
-            if (!graph.isInstanceOf(template, CHART.ChartTemplate))\r
-                continue;\r
-            String label = graph.getPossibleRelatedAdapter(template, L0.HasLabel, String.class);\r
-            if (label != null)\r
-                result.put(label, template);\r
-        }\r
-        return result;\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2011 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.modeling.ui.chart.property;
+
+import java.util.Collections;
+import java.util.Map;
+import java.util.TreeMap;
+
+import org.simantics.browsing.ui.swt.widgets.impl.ReadFactoryImpl;
+import org.simantics.charts.ontology.ChartResource;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.layer0.adapter.Instances;
+import org.simantics.db.layer0.request.PossibleModel;
+import org.simantics.layer0.Layer0;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public class AvailableTemplateFactory extends ReadFactoryImpl<Resource, Map<String, Object>> {
+
+    @Override
+    public Map<String, Object> perform(ReadGraph graph, Resource input) throws DatabaseException {
+        Layer0 L0 = Layer0.getInstance(graph);
+        ChartResource CHART = ChartResource.getInstance(graph);
+        Instances query = graph.adapt(CHART.ChartTemplate, Instances.class);
+        Resource model = graph.syncRequest(new PossibleModel(input));
+        if (model == null)
+            return Collections.emptyMap();
+        Map<String, Object> result = new TreeMap<String, Object>();
+        for (Resource template : query.find(graph, model)) {
+            if (!graph.isInstanceOf(template, CHART.ChartTemplate))
+                continue;
+            String label = graph.getPossibleRelatedAdapter(template, L0.HasLabel, String.class);
+            if (label != null)
+                result.put(label, template);
+        }
+        return result;
+    }
+
+}