]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.structural.ui/src/org/simantics/structural/ui/modelBrowser/nodes/AbstractNode.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.structural.ui / src / org / simantics / structural / ui / modelBrowser / nodes / AbstractNode.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.structural.ui.modelBrowser.nodes;\r
13 \r
14 import org.eclipse.core.runtime.IAdaptable;\r
15 import org.simantics.db.Resource;\r
16 \r
17 public abstract class AbstractNode implements IAdaptable {\r
18     public final Resource resource;\r
19 \r
20     public AbstractNode(Resource resource) {\r
21         assert(resource != null);\r
22         this.resource = resource;\r
23     }\r
24 \r
25     @Override\r
26     public int hashCode() {\r
27         return resource.hashCode() + getClass().hashCode();\r
28     }\r
29 \r
30     @Override\r
31     public boolean equals(Object obj) {\r
32         if (this == obj)\r
33             return true;\r
34         if (obj == null)\r
35             return false;\r
36         if (getClass() != obj.getClass())\r
37             return false;\r
38         AbstractNode other = (AbstractNode) obj;\r
39         return resource.equals(other.resource);\r
40     }\r
41 \r
42     @SuppressWarnings("rawtypes")\r
43     @Override\r
44     public Object getAdapter(Class adapter) {\r
45         if(adapter == Resource.class)\r
46             return resource;\r
47         return null;\r
48     }\r
49 }\r