]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.common/src/org/simantics/db/common/request/ResourceRead2.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db.common / src / org / simantics / db / common / request / ResourceRead2.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.request;\r
13 \r
14 import org.simantics.db.ReadGraph;\r
15 import org.simantics.db.Resource;\r
16 import org.simantics.db.exception.DatabaseException;\r
17 \r
18 abstract public class ResourceRead2<T> extends ResourceReadBase<T> {\r
19 \r
20         final protected Resource resource;\r
21         final protected Resource resource2;\r
22 \r
23     @Override\r
24     public int hashCode() {\r
25         return resource.hashCode() + 31 * resource2.hashCode();\r
26     }\r
27 \r
28     @Override\r
29     public boolean equals(Object object) {\r
30         if (this == object)\r
31             return true;\r
32         else if (object == null)\r
33             return false;\r
34         else if (getClass() != object.getClass())\r
35             return false;\r
36         ResourceRead2<?> r = (ResourceRead2<?>)object;\r
37         return resource.equals(r.resource) && resource2.equals(r.resource2);\r
38     }\r
39 \r
40     public ResourceRead2(Resource resource, Resource resource2) {\r
41         if(resource == null) throw new IllegalArgumentException("Null resource.");\r
42         if(resource2 == null) throw new IllegalArgumentException("Null resource2.");\r
43         this.resource = resource;\r
44         this.resource2 = resource2;\r
45     }\r
46     \r
47     @Override\r
48     public boolean isImmutable(ReadGraph graph) throws DatabaseException {\r
49         return graph.isImmutable(resource) && graph.isImmutable(resource2);\r
50     }\r
51 \r
52     \r
53     @Override\r
54     public String toString() {\r
55         return getClass().getSimpleName() + "|" + resource + "|" + resource2; \r
56     }\r
57     \r
58 }\r