soot.jimple.infoflow.results.xml.SerializedPathElement 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
package soot.jimple.infoflow.results.xml;
/**
* Class representing an element on the taint propagation path of a data flow
* result
*
* @author Steven Arzt
*
*/
public class SerializedPathElement extends AbstractSerializedSourceSink {
SerializedPathElement(SerializedAccessPath ap, String statement,
String method) {
super(ap, statement, method);
}
}