
soot.toolkits.scalar.IdentityPair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soot Show documentation
Show all versions of soot Show documentation
A Java Optimization Framework
package soot.toolkits.scalar;
/*-
* #%L
* Soot - a J*va Optimization Framework
* %%
* Copyright (C) 2002 Ondrej Lhotak
* Copyright (C) 2007 Manu Sridharan
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 2.1 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
/**
* Just a pair of arbitrary objects.
*
* @author Ondrej Lhotak
* @author Manu Sridharan (genericized it)
*/
public class IdentityPair {
protected final T o1;
protected final U o2;
protected final int hashCode;
public IdentityPair(T o1, U o2) {
this.o1 = o1;
this.o2 = o2;
this.hashCode = computeHashCode();
}
@Override
public int hashCode() {
return hashCode;
}
/**
* {@inheritDoc}
*/
private int computeHashCode() {
final int prime = 31;
int result = 1;
result = prime * result + System.identityHashCode(o1);
result = prime * result + System.identityHashCode(o2);
return result;
}
/**
* {@inheritDoc}
*/
@SuppressWarnings("unchecked")
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final IdentityPair other = (IdentityPair) obj;
if (o1 != other.o1) {
return false;
}
if (o2 != other.o2) {
return false;
}
return true;
}
public T getO1() {
return o1;
}
public U getO2() {
return o2;
}
public String toString() {
return "IdentityPair " + o1 + "," + o2;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy