]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.common/src/org/simantics/db/common/request/BinaryAsyncRead.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db.common / src / org / simantics / db / common / request / BinaryAsyncRead.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 \r
15 abstract public class BinaryAsyncRead<P1, P2, R> extends UnaryAsyncRead<P1, R> {\r
16 \r
17     final protected P2 parameter2;\r
18 \r
19     @Override\r
20     public int hashCode() {\r
21         final int h1 = parameter != null ? parameter.hashCode() : 0;\r
22         final int h2 = parameter2 != null ? parameter2.hashCode() : 0;\r
23         return h1 + 31 * h2;\r
24     }\r
25 \r
26     @Override\r
27     public boolean equals(Object object) {\r
28         if (this == object)\r
29             return true;\r
30         else if (object == null)\r
31             return false;\r
32         else if (getClass() != object.getClass())\r
33             return false;\r
34         BinaryAsyncRead<?, ?, ?> r = (BinaryAsyncRead<?, ?, ?>) object;\r
35         if(parameter != null) {\r
36             if(!parameter.equals(r.parameter)) return false;\r
37         } else if(r.parameter != null) return false;\r
38         if(parameter2 != null) {\r
39             if(!parameter2.equals(r.parameter2)) return false;\r
40         } else if(r.parameter2 != null) return false;\r
41         return true;\r
42     }\r
43 \r
44     public BinaryAsyncRead(P1 parameter1, P2 parameter2) {\r
45         super(parameter1);\r
46         this.parameter2 = parameter2;\r
47     }\r
48 \r
49 }\r