]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/variable/VariableX.java
Merge "Fixed ProfileObserver.update race with multiple query threads"
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / variable / VariableX.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 public class VariableX implements VariableOrResource {
15     
16     public final Variable value;
17
18     public VariableX(Variable value) {
19         this.value = value;
20     }
21     
22     @Override
23     public String toString() {
24         return "VariableX " + value;
25     }
26     
27     @Override
28     public boolean equals(Object obj) {
29         if(this == obj)
30             return true;
31         if(obj == null || obj.getClass() != getClass())
32             return false;
33         VariableX other = (VariableX)obj;
34         return value == null ? other.value == null : value.equals(other.value);
35     }
36     
37     @Override
38     public int hashCode() {
39         return 31 * (value == null ? 0 : value.hashCode()) + 13532;
40     }
41     
42 }