]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.common/src/org/simantics/db/common/request/BinaryAsyncRead.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.db.common / src / org / simantics / db / common / request / BinaryAsyncRead.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 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  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.db.common.request;
13
14
15 abstract public class BinaryAsyncRead<P1, P2, R> extends UnaryAsyncRead<P1, R> {
16
17     final protected P2 parameter2;
18
19     @Override
20     public int hashCode() {
21         final int h1 = parameter != null ? parameter.hashCode() : 0;
22         final int h2 = parameter2 != null ? parameter2.hashCode() : 0;
23         return h1 + 31 * h2;
24     }
25
26     @Override
27     public boolean equals(Object object) {
28         if (this == object)
29             return true;
30         else if (object == null)
31             return false;
32         else if (getClass() != object.getClass())
33             return false;
34         BinaryAsyncRead<?, ?, ?> r = (BinaryAsyncRead<?, ?, ?>) object;
35         if(parameter != null) {
36             if(!parameter.equals(r.parameter)) return false;
37         } else if(r.parameter != null) return false;
38         if(parameter2 != null) {
39             if(!parameter2.equals(r.parameter2)) return false;
40         } else if(r.parameter2 != null) return false;
41         return true;
42     }
43
44     public BinaryAsyncRead(P1 parameter1, P2 parameter2) {
45         super(parameter1);
46         this.parameter2 = parameter2;
47     }
48
49     @Override
50     public String toString() {
51         return getClass().getName() + "[" + parameter + ", " + parameter2 + "]";
52     }
53
54 }