]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/labelers/LazyContainerLabeler.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.common / src / org / simantics / browsing / ui / common / labelers / LazyContainerLabeler.java
index ccdd2cac1eca7599450b03f92be72adbd4a22848..bdb83647be4b7df4512ce3789b5dcdf07ead210c 100644 (file)
@@ -1,63 +1,63 @@
-/*******************************************************************************\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.Collections;\r
-import java.util.HashMap;\r
-import java.util.Map;\r
-\r
-import org.simantics.browsing.ui.GraphExplorer.ModificationContext;\r
-import org.simantics.browsing.ui.content.Labeler;\r
-\r
-public class LazyContainerLabeler implements Labeler {\r
-\r
-    private final HashMap<String, String> labels = new HashMap<String, String>(4);\r
-    private int category;\r
-    //private LabelerListener listener;\r
-\r
-    public void addLabel(String key, String label) {\r
-        @SuppressWarnings("unused")\r
-        String old = labels.put(key, label);\r
-        //if (listener != null && !ObjectUtils.objectEquals(label, old))\r
-        //    listener.columnModified(key, label);\r
-    }\r
-\r
-    @Override\r
-    public Map<String, String> getLabels() {\r
-        return labels;\r
-    }\r
-\r
-    @Override\r
-    public Map<String, String> getRuntimeLabels() {\r
-        return Collections.emptyMap();\r
-    }\r
-\r
-    @Override\r
-    public int getCategory() {\r
-        return category;\r
-    }\r
-\r
-    public void setCategory(int category) {\r
-        this.category = category;\r
-    }\r
-\r
-    @Override\r
-    public Modifier getModifier(ModificationContext modificationContext, String key) {\r
-        return null;\r
-    }\r
-\r
-    @Override\r
-    public void setListener(LabelerListener listener) {\r
-        //this.listener = listener;\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.Collections;
+import java.util.HashMap;
+import java.util.Map;
+
+import org.simantics.browsing.ui.GraphExplorer.ModificationContext;
+import org.simantics.browsing.ui.content.Labeler;
+
+public class LazyContainerLabeler implements Labeler {
+
+    private final HashMap<String, String> labels = new HashMap<String, String>(4);
+    private int category;
+    //private LabelerListener listener;
+
+    public void addLabel(String key, String label) {
+        @SuppressWarnings("unused")
+        String old = labels.put(key, label);
+        //if (listener != null && !ObjectUtils.objectEquals(label, old))
+        //    listener.columnModified(key, label);
+    }
+
+    @Override
+    public Map<String, String> getLabels() {
+        return labels;
+    }
+
+    @Override
+    public Map<String, String> getRuntimeLabels() {
+        return Collections.emptyMap();
+    }
+
+    @Override
+    public int getCategory() {
+        return category;
+    }
+
+    public void setCategory(int category) {
+        this.category = category;
+    }
+
+    @Override
+    public Modifier getModifier(ModificationContext modificationContext, String key) {
+        return null;
+    }
+
+    @Override
+    public void setListener(LabelerListener listener) {
+        //this.listener = listener;
+    }
+
+}