soot.jimple.infoflow.cfg.BiDirICFGFactory Maven / Gradle / Ivy
/**
* (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 - 2025 Weber Informatics LLC | Privacy Policy