]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.procore/src/fi/vtt/simantics/procore/internal/DirectStatementImpl.java
Merge commit 'ffdf837'
[simantics/platform.git] / bundles / org.simantics.db.procore / src / fi / vtt / simantics / procore / internal / DirectStatementImpl.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 fi.vtt.simantics.procore.internal;\r
13 \r
14 import org.simantics.db.Resource;\r
15 import org.simantics.db.Statement;\r
16 import org.simantics.db.impl.ResourceImpl;\r
17 import org.simantics.db.impl.support.ResourceSupport;\r
18 \r
19 final public class DirectStatementImpl implements Statement {\r
20 \r
21         final ResourceSupport support;\r
22         final int s;\r
23         final int p;\r
24         final int o;\r
25         \r
26         DirectStatementImpl(ResourceSupport support, int s, int p, int o) {\r
27                 this.support = support;\r
28                 this.s = s;\r
29                 this.p = p;\r
30                 this.o = o;\r
31         }\r
32 \r
33         @Override\r
34         public Resource getObject() {\r
35                 return new ResourceImpl(support, o);\r
36         }\r
37 \r
38         @Override\r
39         public Resource getPredicate() {\r
40                 return new ResourceImpl(support, p);\r
41         }\r
42 \r
43         @Override\r
44         public Resource getSubject() {\r
45                 return new ResourceImpl(support, s);\r
46         }\r
47 \r
48         @Override\r
49         public boolean isAsserted(Resource subject) {\r
50                 return false;\r
51         }\r
52         \r
53     @Override\r
54     final public int hashCode() {\r
55         return 41 * ( 31 * s + p) + o;\r
56     }\r
57 \r
58     @Override\r
59     public boolean equals(Object object) {\r
60         if (this == object)\r
61             return true;\r
62         else if (object == null)\r
63             return false;\r
64         else if (!(object instanceof Statement))\r
65             return false;\r
66         Statement r = (Statement)object;\r
67         return getSubject().equalsResource(r.getSubject()) && getPredicate().equalsResource(r.getPredicate()) && getObject().equalsResource(r.getObject());\r
68     }\r
69 }\r