soot.jimple.infoflow.sourcesSinks.definitions.ImmutableAccessPathTuple 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.sourcesSinks.definitions;
/**
* Immutable version of the {@link AccessPathTuple}
*
* @author Steven Arzt
*
*/
public class ImmutableAccessPathTuple extends AccessPathTuple {
public ImmutableAccessPathTuple(AccessPathTuple parent) {
super(parent);
}
@Override
public void setDescription(String description) {
throw new RuntimeException("Immutable object cannot be modified");
}
}