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