]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.g2d/src/org/simantics/g2d/element/handler/impl/ParentImpl.java
Sync git svn branch with SVN repository r33324.
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / element / handler / impl / ParentImpl.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.element.handler.impl;\r
13 \r
14 import org.simantics.g2d.element.ElementHints;\r
15 import org.simantics.g2d.element.IElement;\r
16 import org.simantics.g2d.element.handler.Parent;\r
17 \r
18 /**\r
19  * The most simple implementation of the {@link Parent} handler.\r
20  * \r
21  * @author Tuukka Lehtonen\r
22  */\r
23 public class ParentImpl implements Parent {\r
24 \r
25     public static final ParentImpl INSTANCE = new ParentImpl();\r
26 \r
27     private static final long serialVersionUID = 1L;\r
28 \r
29     private ParentImpl() {}\r
30 \r
31     /* (non-Javadoc)\r
32      * @see org.simantics.g2d.element.handler.Parent#getParent(org.simantics.g2d.element.IElement)\r
33      */\r
34     @Override\r
35     public IElement getParent(IElement element) {\r
36         IElement e = element.getHint(ElementHints.KEY_PARENT_ELEMENT);\r
37         return e;\r
38 \r
39 //        if (e == null)\r
40 //            return null;\r
41 //\r
42 //        Object obj = e.getHint(ElementHints.KEY_OBJECT);\r
43 //        if (obj == null)\r
44 //            return e;\r
45 //\r
46 //        IDiagram diagram = ElementUtils.peekDiagram(element);\r
47 //        DataElementMap dem = diagram.getDiagramClass().getAtMostOneItemOfClass(DataElementMap.class);\r
48 //        if (dem == null)\r
49 //            return e;\r
50 //\r
51 //        IElement mapped = dem.getElement(diagram, obj);\r
52 //        return mapped != null ? mapped : e;\r
53     }\r
54 \r
55 }\r