]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.common/src/org/simantics/db/common/NamedTypedResource.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db.common / src / org / simantics / db / common / NamedTypedResource.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.db.common;\r
13 \r
14 import org.simantics.db.Resource;\r
15 \r
16 /**\r
17  * \r
18  */\r
19 final public class NamedTypedResource implements Comparable<NamedTypedResource> {\r
20         \r
21     final String   name;\r
22     final Resource resource;\r
23     final Resource type;\r
24 \r
25     public NamedTypedResource(String name, Resource resource, Resource type) {\r
26         assert(name != null);\r
27         assert(resource != null);\r
28         assert(type != null);\r
29         this.name = name;\r
30         this.resource = resource;\r
31         this.type = type;\r
32     }\r
33 \r
34     public String getName() {\r
35         return name;\r
36     }\r
37 \r
38     public Resource getResource() {\r
39         return resource;\r
40     }\r
41 \r
42     public Resource getType() {\r
43         return type;\r
44     }\r
45 \r
46     @Override\r
47     public int compareTo(NamedTypedResource o) {\r
48         return name.compareToIgnoreCase(o.name);\r
49     }\r
50 \r
51     @Override\r
52     public String toString() {\r
53         return name;\r
54     }\r
55 \r
56     @Override\r
57     public int hashCode() {\r
58         return resource.hashCode();\r
59     }\r
60 \r
61     @Override\r
62     public boolean equals(Object obj) {\r
63         if (this == obj)\r
64             return true;\r
65         if (obj == null)\r
66             return false;\r
67         if (getClass() != obj.getClass())\r
68             return false;\r
69         NamedTypedResource other = (NamedTypedResource) obj;\r
70         return resource.equals(other.resource) && type.equals(other.type) && name.equals(other.name);\r
71     }\r
72 \r
73 }\r