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