]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.diagram/src/org/simantics/diagram/symbolcontribution/GroupProxySymbolItem.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.diagram / src / org / simantics / diagram / symbolcontribution / GroupProxySymbolItem.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.diagram.symbolcontribution;\r
13 \r
14 import org.simantics.diagram.symbollibrary.ISymbolGroup;\r
15 import org.simantics.diagram.symbollibrary.ISymbolItem;\r
16 import org.simantics.g2d.element.ElementClass;\r
17 import org.simantics.utils.datastructures.cache.ProvisionException;\r
18 import org.simantics.utils.datastructures.hints.IHintObservable;\r
19 \r
20 /**\r
21  * An ISymbolItem proxy version that allows changing the ISymbolGroup returned\r
22  * by {@link #getGroup()}.\r
23  * \r
24  * @author Tuukka Lehtonen\r
25  */\r
26 public class GroupProxySymbolItem implements ISymbolItem {\r
27 \r
28     private final ISymbolItem proxy;\r
29     private final ISymbolGroup group;\r
30 \r
31     public GroupProxySymbolItem(ISymbolItem item, ISymbolGroup group) {\r
32         if (item == null)\r
33             throw new NullPointerException("null item");\r
34         if (group == null)\r
35             throw new NullPointerException("null group");\r
36         this.proxy = item;\r
37         this.group = group;\r
38     }\r
39 \r
40     @Override\r
41     public String getName() {\r
42         return proxy.getName();\r
43     }\r
44 \r
45     @Override\r
46     public String getDescription() {\r
47         return proxy.getDescription();\r
48     }\r
49 \r
50     @Override\r
51     public Object getAdapter(Class adapter) {\r
52         return proxy.getAdapter(adapter);\r
53     }\r
54 \r
55     @Override\r
56     public ElementClass getElementClass(IHintObservable hints) throws ProvisionException {\r
57         return proxy.getElementClass(hints);\r
58     }\r
59 \r
60     @Override\r
61     public ISymbolGroup getGroup() {\r
62         return group;\r
63     }\r
64 \r
65     @Override\r
66     public int hashCode() {\r
67         return proxy.hashCode();\r
68     }\r
69 \r
70     @Override\r
71     public boolean equals(Object obj) {\r
72         return proxy.equals(obj);\r
73     }\r
74 \r
75 }