]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.structural.ui/src/org/simantics/structural/ui/modelBrowser/nodes/AbstractNode.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.structural.ui / src / org / simantics / structural / ui / modelBrowser / nodes / AbstractNode.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.structural.ui.modelBrowser.nodes;
13
14 import org.eclipse.core.runtime.IAdaptable;
15 import org.simantics.db.Resource;
16
17 public abstract class AbstractNode implements IAdaptable {
18     public final Resource resource;
19
20     public AbstractNode(Resource resource) {
21         assert(resource != null);
22         this.resource = resource;
23     }
24
25     @Override
26     public int hashCode() {
27         return resource.hashCode() + getClass().hashCode();
28     }
29
30     @Override
31     public boolean equals(Object obj) {
32         if (this == obj)
33             return true;
34         if (obj == null)
35             return false;
36         if (getClass() != obj.getClass())
37             return false;
38         AbstractNode other = (AbstractNode) obj;
39         return resource.equals(other.resource);
40     }
41
42     @SuppressWarnings("rawtypes")
43     @Override
44     public Object getAdapter(Class adapter) {
45         if(adapter == Resource.class)
46             return resource;
47         return null;
48     }
49 }