]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.diagram/src/org/simantics/diagram/adapter/CanvasAdapterFactory.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.diagram / src / org / simantics / diagram / adapter / CanvasAdapterFactory.java
index 317966b235bba71a678f05582f4360fa7ec79d5f..7fb7dc85d4c50ebda884c4b5255b7819a58fe1e5 100644 (file)
@@ -1,54 +1,54 @@
-/*******************************************************************************\r
- * Copyright (c) 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.diagram.adapter;\r
-\r
-import java.util.concurrent.atomic.AtomicBoolean;\r
-\r
-import org.eclipse.core.runtime.IAdaptable;\r
-import org.eclipse.core.runtime.IAdapterFactory;\r
-import org.simantics.g2d.canvas.ICanvasContext;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class CanvasAdapterFactory implements IAdapterFactory {\r
-\r
-    /**\r
-     * Hack for preventing eternal {@link #getAdapter(Object, Class)} recursion\r
-     */\r
-    AtomicBoolean adapting = new AtomicBoolean(false);\r
-\r
-    @SuppressWarnings("rawtypes")\r
-    @Override\r
-    public Object getAdapter(Object adaptableObject, Class adapterType) {\r
-        if (!adapting.compareAndSet(false, true)) {\r
-            return null;\r
-        }\r
-        try {\r
-            if (ICanvasContext.class.equals(adapterType)) {\r
-                if (adaptableObject instanceof IAdaptable) {\r
-                    return ((IAdaptable) adaptableObject).getAdapter(adapterType);\r
-                }\r
-            }\r
-            return null;\r
-        } finally {\r
-            adapting.set(false);\r
-        }\r
-    }\r
-\r
-    @SuppressWarnings("rawtypes")\r
-    @Override\r
-    public Class[] getAdapterList() {\r
-        return new Class[] { ICanvasContext.class };\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 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.diagram.adapter;
+
+import java.util.concurrent.atomic.AtomicBoolean;
+
+import org.eclipse.core.runtime.IAdaptable;
+import org.eclipse.core.runtime.IAdapterFactory;
+import org.simantics.g2d.canvas.ICanvasContext;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public class CanvasAdapterFactory implements IAdapterFactory {
+
+    /**
+     * Hack for preventing eternal {@link #getAdapter(Object, Class)} recursion
+     */
+    AtomicBoolean adapting = new AtomicBoolean(false);
+
+    @SuppressWarnings("rawtypes")
+    @Override
+    public Object getAdapter(Object adaptableObject, Class adapterType) {
+        if (!adapting.compareAndSet(false, true)) {
+            return null;
+        }
+        try {
+            if (ICanvasContext.class.equals(adapterType)) {
+                if (adaptableObject instanceof IAdaptable) {
+                    return ((IAdaptable) adaptableObject).getAdapter(adapterType);
+                }
+            }
+            return null;
+        } finally {
+            adapting.set(false);
+        }
+    }
+
+    @SuppressWarnings("rawtypes")
+    @Override
+    public Class[] getAdapterList() {
+        return new Class[] { ICanvasContext.class };
+    }
+
+}