package tfm.exec; import com.github.javaparser.ast.Node; import tfm.graphs.SDGGraph; import tfm.visitors.SDGVisitor; import java.io.IOException; public class SDGLog extends GraphLog { @Override public void visit(Node node) { this.graph = new SDGGraph(); SDGVisitor sdgVisitor = new SDGVisitor(this.graph); node.accept(sdgVisitor, null); } @Override public void generatePNGs() throws IOException { } @Override public void generatePNGs(String pngName) throws IOException { } @Override public void openVisualRepresentation() throws IOException { } }