soot.jimple.infoflow.results.xml.SerializedSinkInfo 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;
/**
* Information about a flow sink loaded from an external data storage. This
* object thus cannot reference actual Soot objects
*
* @author Steven Arzt
*
*/
public class SerializedSinkInfo extends AbstractSerializedSourceSink {
SerializedSinkInfo(SerializedAccessPath accessPath, String statement,
String method) {
super(accessPath, statement, method);
}
}