]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/modelBrowser2/label/SubscriptionItemLabelRule.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / modelBrowser2 / label / SubscriptionItemLabelRule.java
index 5105d79d3a4184f797bea3ce4a5b4c40c13d16e6..e42531d07c65bb0c99327a85681337dcac6097e3 100644 (file)
@@ -1,58 +1,58 @@
-/*******************************************************************************\r
- * Copyright (c) 2012 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.modelBrowser2.label;\r
-\r
-import java.util.Collections;\r
-import java.util.Map;\r
-\r
-import org.eclipse.core.runtime.preferences.IEclipsePreferences;\r
-import org.eclipse.core.runtime.preferences.InstanceScope;\r
-import org.simantics.browsing.ui.common.ColumnKeys;\r
-import org.simantics.browsing.ui.model.labels.LabelRule;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.modeling.subscription.SubscriptionItemLabel;\r
-import org.simantics.utils.format.ValueFormat;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class SubscriptionItemLabelRule implements LabelRule {\r
-\r
-    public static final SubscriptionItemLabelRule INSTANCE = new SubscriptionItemLabelRule();\r
-\r
-    ValueFormat valueFormat;\r
-\r
-    public SubscriptionItemLabelRule() {\r
-        IEclipsePreferences chartPreferenceNode = InstanceScope.INSTANCE.getNode( "org.simantics.charts" );\r
-        String s = chartPreferenceNode.get("chart.valueformat", ValueFormat.Default.name());\r
-        valueFormat = ValueFormat.valueOf( s );\r
-    }\r
-\r
-    @Override\r
-    public boolean isCompatible(Class<?> contentType) {\r
-        return contentType.equals(Resource.class);\r
-    }\r
-\r
-    @Override\r
-    public Map<String, String> getLabel(ReadGraph graph, Object content) throws DatabaseException {\r
-        boolean oldSync = graph.setSynchronous(true);\r
-        try {\r
-            Resource item = (Resource) content;\r
-            String label = SubscriptionItemLabel.resolveLabel(graph, item, valueFormat, true);\r
-            return Collections.singletonMap(ColumnKeys.SINGLE, label);\r
-        } finally {\r
-            graph.setSynchronous(oldSync);\r
-        }\r
-    }\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2012 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.modelBrowser2.label;
+
+import java.util.Collections;
+import java.util.Map;
+
+import org.eclipse.core.runtime.preferences.IEclipsePreferences;
+import org.eclipse.core.runtime.preferences.InstanceScope;
+import org.simantics.browsing.ui.common.ColumnKeys;
+import org.simantics.browsing.ui.model.labels.LabelRule;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.modeling.subscription.SubscriptionItemLabel;
+import org.simantics.utils.format.ValueFormat;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public class SubscriptionItemLabelRule implements LabelRule {
+
+    public static final SubscriptionItemLabelRule INSTANCE = new SubscriptionItemLabelRule();
+
+    ValueFormat valueFormat;
+
+    public SubscriptionItemLabelRule() {
+        IEclipsePreferences chartPreferenceNode = InstanceScope.INSTANCE.getNode( "org.simantics.charts" );
+        String s = chartPreferenceNode.get("chart.valueformat", ValueFormat.Default.name());
+        valueFormat = ValueFormat.valueOf( s );
+    }
+
+    @Override
+    public boolean isCompatible(Class<?> contentType) {
+        return contentType.equals(Resource.class);
+    }
+
+    @Override
+    public Map<String, String> getLabel(ReadGraph graph, Object content) throws DatabaseException {
+        boolean oldSync = graph.setSynchronous(true);
+        try {
+            Resource item = (Resource) content;
+            String label = SubscriptionItemLabel.resolveLabel(graph, item, valueFormat, true);
+            return Collections.singletonMap(ColumnKeys.SINGLE, label);
+        } finally {
+            graph.setSynchronous(oldSync);
+        }
+    }
+}