]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.g2d/src/org/simantics/g2d/utils/ElementNodeBridge.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / utils / ElementNodeBridge.java
diff --git a/bundles/org.simantics.g2d/src/org/simantics/g2d/utils/ElementNodeBridge.java b/bundles/org.simantics.g2d/src/org/simantics/g2d/utils/ElementNodeBridge.java
new file mode 100644 (file)
index 0000000..fbb89d8
--- /dev/null
@@ -0,0 +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