package tfm.graphbuilding; import tfm.graphs.CFGGraph; import tfm.graphs.PDGGraph; import tfm.graphs.SDGGraph; public class Graphs { public static final GraphOptions CFG = new CFGOptions(); public static final GraphOptions PDG = new PDGOptions(); public static final GraphOptions SDG = new SDGOptions(); }