soot.jimple.infoflow.collect.IdentityWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soot-infoflow Show documentation
Show all versions of soot-infoflow Show documentation
Soot extending data flow tracking components for Java
The newest version!
package soot.jimple.infoflow.collect;
class IdentityWrapper {
private final E contents;
public IdentityWrapper(E abs) {
this.contents = abs;
}
public E getContents() {
return this.contents;
}
@Override
public String toString() {
return this.contents.toString();
}
@SuppressWarnings("rawtypes")
@Override
public boolean equals(Object other) {
if (other == null)
return false;
if (other == this)
return true;
if (this.getClass() != other.getClass())
return false;
return this.contents == ((IdentityWrapper) other).contents;
}
@Override
public int hashCode() {
return System.identityHashCode(this.contents);
}
}