]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.ui/src/org/simantics/ui/workbench/editor/EditorMappingImpl.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.ui / src / org / simantics / ui / workbench / editor / EditorMappingImpl.java
index a3355beb362a188de8cfe6b70e43462b3d92d9f9..085c074276b00b0a17828a3f0352b4b441590910 100644 (file)
@@ -1,60 +1,60 @@
-/*******************************************************************************\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.ui.workbench.editor;\r
-\r
-import java.lang.ref.WeakReference;\r
-import java.util.WeakHashMap;\r
-\r
-/**\r
- * A class for holding a set of (Object, ResourceEditorAdapter) bindings. These\r
- * bindings are used to store the latest editor opened for input objects. This\r
- * is used by the default UI double click actions.\r
- * \r
- * @author Tuukka Lehtonen\r
- */\r
-public class EditorMappingImpl implements EditorMapping {\r
-\r
-    /**\r
-     * Prevent the map from holding on to resource editor adapters.\r
-     */\r
-    WeakHashMap<Object, WeakReference<EditorAdapter>> resourceToAdapter = new WeakHashMap<Object, WeakReference<EditorAdapter>>();\r
-\r
-    @Override\r
-    public synchronized void put(Object o, EditorAdapter adapter) {\r
-        assert o != null;\r
-        if (adapter != null) {\r
-            resourceToAdapter.put(o, new WeakReference<EditorAdapter>(adapter));\r
-        } else {\r
-            resourceToAdapter.remove(o);\r
-        }\r
-    }\r
-\r
-    @Override\r
-    public synchronized EditorAdapter get(Object o) {\r
-        //System.out.println("EditorMapping.get(" + o + "): key set=" + resourceToAdapter.keySet());\r
-        WeakReference<EditorAdapter> ref = resourceToAdapter.get(o);\r
-        if (ref == null)\r
-            return null;\r
-        EditorAdapter adapter = ref.get();\r
-        if (adapter == null) {\r
-            resourceToAdapter.remove(o);\r
-            return null;\r
-        }\r
-        return adapter;\r
-    }\r
-\r
-    @Override\r
-    public synchronized void clear() {\r
-        resourceToAdapter.clear();\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.ui.workbench.editor;
+
+import java.lang.ref.WeakReference;
+import java.util.WeakHashMap;
+
+/**
+ * A class for holding a set of (Object, ResourceEditorAdapter) bindings. These
+ * bindings are used to store the latest editor opened for input objects. This
+ * is used by the default UI double click actions.
+ * 
+ * @author Tuukka Lehtonen
+ */
+public class EditorMappingImpl implements EditorMapping {
+
+    /**
+     * Prevent the map from holding on to resource editor adapters.
+     */
+    WeakHashMap<Object, WeakReference<EditorAdapter>> resourceToAdapter = new WeakHashMap<Object, WeakReference<EditorAdapter>>();
+
+    @Override
+    public synchronized void put(Object o, EditorAdapter adapter) {
+        assert o != null;
+        if (adapter != null) {
+            resourceToAdapter.put(o, new WeakReference<EditorAdapter>(adapter));
+        } else {
+            resourceToAdapter.remove(o);
+        }
+    }
+
+    @Override
+    public synchronized EditorAdapter get(Object o) {
+        //System.out.println("EditorMapping.get(" + o + "): key set=" + resourceToAdapter.keySet());
+        WeakReference<EditorAdapter> ref = resourceToAdapter.get(o);
+        if (ref == null)
+            return null;
+        EditorAdapter adapter = ref.get();
+        if (adapter == null) {
+            resourceToAdapter.remove(o);
+            return null;
+        }
+        return adapter;
+    }
+
+    @Override
+    public synchronized void clear() {
+        resourceToAdapter.clear();
+    }
+
+}