]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.g2d/src/org/simantics/g2d/utils/ElementNodeBridge.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / utils / ElementNodeBridge.java
index fbb89d85df2a1cc83bbc837d272d94d50a3e0309..1327cdf3589caedf990d32830711f78f8bc15878 100644 (file)
@@ -1,51 +1,51 @@
-/*******************************************************************************\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.g2d.utils;\r
-\r
-import org.simantics.g2d.element.IElement;\r
-import org.simantics.scenegraph.INode;\r
-import org.simantics.utils.datastructures.BijectionMap;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class ElementNodeBridge extends BijectionMap<IElement, INode> {\r
-\r
-    Object id;\r
-\r
-    public ElementNodeBridge(Object id) {\r
-        this.id = id;\r
-    }\r
-\r
-    private ElementNodeBridge(Object id, BijectionMap<IElement, INode> selection) {\r
-        super(selection);\r
-        this.id = id;\r
-    }\r
-\r
-    @Override\r
-    public ElementNodeBridge clone() {\r
-        return new ElementNodeBridge(this.id, this);\r
-    }\r
-\r
-    public Object getId() {\r
-        return id;\r
-    }\r
-\r
-    public void remove(IElement element) {\r
-        removeWithLeft(element);\r
-    }\r
-\r
-    public void remove(INode node) {\r
-        removeWithRight(node);\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.g2d.utils;
+
+import org.simantics.g2d.element.IElement;
+import org.simantics.scenegraph.INode;
+import org.simantics.utils.datastructures.BijectionMap;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public class ElementNodeBridge extends BijectionMap<IElement, INode> {
+
+    Object id;
+
+    public ElementNodeBridge(Object id) {
+        this.id = id;
+    }
+
+    private ElementNodeBridge(Object id, BijectionMap<IElement, INode> selection) {
+        super(selection);
+        this.id = id;
+    }
+
+    @Override
+    public ElementNodeBridge clone() {
+        return new ElementNodeBridge(this.id, this);
+    }
+
+    public Object getId() {
+        return id;
+    }
+
+    public void remove(IElement element) {
+        removeWithLeft(element);
+    }
+
+    public void remove(INode node) {
+        removeWithRight(node);
+    }
+
+}