soot.jimple.infoflow.values.IValueProvider 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.values;
import soot.SootMethod;
import soot.Value;
import soot.jimple.Stmt;
/**
* Common interface for all algorithms that provide constant values
*
* @author Steven Arzt
*
*/
public interface IValueProvider {
public T getValue(SootMethod sm, Stmt stmt, Value value, Class type);
}