]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scenegraph/testcases/org/simantics/scenegraph/tests/Pair.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scenegraph / testcases / org / simantics / scenegraph / tests / Pair.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.scenegraph.tests;
13
14
15 /**
16  * A generic Pair (2-tuple) structure for containing two object instances of
17  * chosen types.
18  * 
19  * @param <T1> type of first element
20  * @param <T2> type of second element
21  */
22 public final class Pair<T1, T2> implements Comparable<Pair<T1, T2>> {
23     public final T1 first;
24     public final T2 second;
25     private final int hash;
26
27     public static <T1, T2> Pair<T1, T2> make(T1 t1, T2 t2) {
28         return new Pair<T1, T2>(t1, t2);
29     }
30
31     public Pair(T1 first, T2 second) {
32         //assert(first != null);
33         //assert(second != null);
34         
35         this.first = first;
36         this.second = second;
37         this.hash = makeHash();
38     }
39     
40     @Override
41     public boolean equals(Object obj) {
42         if (obj == null)
43             return false;
44         if (!(obj.getClass().equals(this.getClass())))
45             return false;
46         Pair<?, ?> other = (Pair<?, ?>) obj;
47         if (other.first != first && (other.first == null || !other.first.equals(first)))
48             return false;
49         if (other.second != second && (other.second == null || !other.second.equals(second)))
50             return false;
51         return true;
52     }
53     
54     @Override
55     public int hashCode() {
56         return hash;
57     }
58     
59     @Override
60     public String toString() {
61         return "<"+first+", "+second+">";
62     }
63     
64     private int makeHash() {
65         return (first == null ? 0 : first.hashCode()) + (second == null ? 0 : second.hashCode())*31;
66     }
67
68         @Override
69         public int compareTo(Pair<T1, T2> arg0) {
70                 return hash - arg0.hash;
71         }
72         
73 }