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

soot.jimple.infoflow.cfg.BiDirICFGFactory Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
/**
 * (c) Copyright 2013, Tata Consultancy Services & Ecole Polytechnique de Montreal
 * All rights reserved
 */
package soot.jimple.infoflow.cfg;

import soot.jimple.infoflow.InfoflowConfiguration.CallgraphAlgorithm;
import soot.jimple.infoflow.solver.cfg.IInfoflowCFG;

/**
 * Interface for all factories that can create bi-directional interprocedural
 * control flow graphs.
 * 
 * @author Steven Arzt
 * @author Marc-Andre Laverdiere-Papineau
 *
 */
public interface BiDirICFGFactory {
	
    public IInfoflowCFG buildBiDirICFG(CallgraphAlgorithm callgraphAlgorithm,
    		boolean enableExceptionTracking);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy