]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/labelers/ConstantLabelerFactory.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.common / src / org / simantics / browsing / ui / common / labelers / ConstantLabelerFactory.java
index fdcbe82fdb954aabd1964f03881224c8d93c45d1..4f0ee22d07926e0c6079b8f78a77d7f0002f466e 100644 (file)
@@ -1,52 +1,52 @@
-/*******************************************************************************\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.browsing.ui.common.labelers;\r
-\r
-import java.util.Map;\r
-\r
-import org.simantics.browsing.ui.NodeContext;\r
-import org.simantics.browsing.ui.PrimitiveQueryUpdater;\r
-import org.simantics.browsing.ui.BuiltinKeys.LabelerKey;\r
-import org.simantics.browsing.ui.content.Labeler;\r
-import org.simantics.browsing.ui.content.LabelerFactory;\r
-import org.simantics.utils.datastructures.ArrayMap;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class ConstantLabelerFactory implements LabelerFactory {\r
-\r
-    private final LabelerStub stub;\r
-\r
-    public ConstantLabelerFactory(int category, Map<String, String> labels) {\r
-        stub = new LabelerStub();\r
-        stub.setContent(new LabelerContent(category, labels));\r
-    }\r
-\r
-    public ConstantLabelerFactory(int category, String ... keyValuePairs) {\r
-        assert((keyValuePairs.length & 1) == 0);\r
-        stub = new LabelerStub();\r
-        String[] keys = new String[keyValuePairs.length / 2];\r
-        String[] values = new String[keyValuePairs.length / 2];\r
-        for(int i=0;i<keyValuePairs.length/2;i++) {\r
-            keys[i] = keyValuePairs[2*i];\r
-            values[i] = keyValuePairs[2*i+1];\r
-        }\r
-        stub.setContent(new LabelerContent(category, new ArrayMap<String, String>(keys, values)));\r
-    }\r
-\r
-    @Override\r
-    public Labeler create(PrimitiveQueryUpdater manager, NodeContext context, LabelerKey key) {\r
-        return stub;\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.browsing.ui.common.labelers;
+
+import java.util.Map;
+
+import org.simantics.browsing.ui.NodeContext;
+import org.simantics.browsing.ui.PrimitiveQueryUpdater;
+import org.simantics.browsing.ui.BuiltinKeys.LabelerKey;
+import org.simantics.browsing.ui.content.Labeler;
+import org.simantics.browsing.ui.content.LabelerFactory;
+import org.simantics.utils.datastructures.ArrayMap;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public class ConstantLabelerFactory implements LabelerFactory {
+
+    private final LabelerStub stub;
+
+    public ConstantLabelerFactory(int category, Map<String, String> labels) {
+        stub = new LabelerStub();
+        stub.setContent(new LabelerContent(category, labels));
+    }
+
+    public ConstantLabelerFactory(int category, String ... keyValuePairs) {
+        assert((keyValuePairs.length & 1) == 0);
+        stub = new LabelerStub();
+        String[] keys = new String[keyValuePairs.length / 2];
+        String[] values = new String[keyValuePairs.length / 2];
+        for(int i=0;i<keyValuePairs.length/2;i++) {
+            keys[i] = keyValuePairs[2*i];
+            values[i] = keyValuePairs[2*i+1];
+        }
+        stub.setContent(new LabelerContent(category, new ArrayMap<String, String>(keys, values)));
+    }
+
+    @Override
+    public Labeler create(PrimitiveQueryUpdater manager, NodeContext context, LabelerKey key) {
+        return stub;
+    }
+
+}