]> gerrit.simantics Code Review - simantics/platform.git/blob - 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
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.g2d.utils;\r
13 \r
14 import org.simantics.g2d.element.IElement;\r
15 import org.simantics.scenegraph.INode;\r
16 import org.simantics.utils.datastructures.BijectionMap;\r
17 \r
18 /**\r
19  * @author Tuukka Lehtonen\r
20  */\r
21 public class ElementNodeBridge extends BijectionMap<IElement, INode> {\r
22 \r
23     Object id;\r
24 \r
25     public ElementNodeBridge(Object id) {\r
26         this.id = id;\r
27     }\r
28 \r
29     private ElementNodeBridge(Object id, BijectionMap<IElement, INode> selection) {\r
30         super(selection);\r
31         this.id = id;\r
32     }\r
33 \r
34     @Override\r
35     public ElementNodeBridge clone() {\r
36         return new ElementNodeBridge(this.id, this);\r
37     }\r
38 \r
39     public Object getId() {\r
40         return id;\r
41     }\r
42 \r
43     public void remove(IElement element) {\r
44         removeWithLeft(element);\r
45     }\r
46 \r
47     public void remove(INode node) {\r
48         removeWithRight(node);\r
49     }\r
50 \r
51 }\r