]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/variable/ResourceX.java
VariableOrResource SCL type
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / variable / ResourceX.java
1 /*******************************************************************************
2  * Copyright (c) 2019 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     Semantum Oy - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.db.layer0.variable;
13
14 import org.simantics.db.Resource;
15
16 public class ResourceX implements VariableOrResource {
17     
18     public final Resource value;
19
20     public ResourceX(Resource value) {
21         this.value = value;
22     }
23     
24     @Override
25     public String toString() {
26         return "ResourceX " + value;
27     }
28     
29     @Override
30     public boolean equals(Object obj) {
31         if(this == obj)
32             return true;
33         if(obj == null || obj.getClass() != getClass())
34             return false;
35         ResourceX other = (ResourceX)obj;
36         return value == null ? other.value == null : value.equals(other.value);
37     }
38     
39     @Override
40     public int hashCode() {
41         return 31 * (value == null ? 0 : value.hashCode()) + 13532;
42     }
43     
44 }