All Downloads are FREE. Search and download functionalities are using the official Maven repository.

soot.jimple.infoflow.sourcesSinks.definitions.ImmutableAccessPathTuple Maven / Gradle / Ivy

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");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy