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

soot.jimple.infoflow.values.IValueProvider Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show 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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy