X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.g2d%2Fsrc%2Forg%2Fsimantics%2Fg2d%2Futils%2FElementNodeBridge.java;h=1327cdf3589caedf990d32830711f78f8bc15878;hb=78d831a19c254d829e45d04c5ec6a3057680b7d7;hp=fbb89d85df2a1cc83bbc837d272d94d50a3e0309;hpb=969bd23cab98a79ca9101af33334000879fb60c5;p=simantics%2Fplatform.git 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 index fbb89d85d..1327cdf35 100644 --- a/bundles/org.simantics.g2d/src/org/simantics/g2d/utils/ElementNodeBridge.java +++ b/bundles/org.simantics.g2d/src/org/simantics/g2d/utils/ElementNodeBridge.java @@ -1,51 +1,51 @@ -/******************************************************************************* - * 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 { - - Object id; - - public ElementNodeBridge(Object id) { - this.id = id; - } - - private ElementNodeBridge(Object id, BijectionMap 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); - } - -} +/******************************************************************************* + * 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 { + + Object id; + + public ElementNodeBridge(Object id) { + this.id = id; + } + + private ElementNodeBridge(Object id, BijectionMap 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); + } + +}