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

soot.jimple.infoflow.handlers.PreAnalysisHandler Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
package soot.jimple.infoflow.handlers;

/**
 * Handler that allows clients to execute certain tasks before the actual data
 * flow analysis is executed.
 * 
 * @author Steven Arzt
 *
 */
public interface PreAnalysisHandler {
	
	/**
	 * This method is called before the callgraph is constructed
	 */
	public void onBeforeCallgraphConstruction();
	
	/**
	 * This method is called after the callgraph has been constructed, but
	 * before the actual data flow analysis is carried out.
	 */
	public void onAfterCallgraphConstruction();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy