" + node.getId() + " | " + StringEscapeUtils.escapeHtml4(node.getStatement()) + " | "; 108 | output += StringEscapeUtils.escapeHtml4(setToString(this.strategy.selectEntry(this.outgoing.get(node), this.incoming.get(node)))); 109 | output += " | "; 110 | output += StringEscapeUtils.escapeHtml4(setToString(this.strategy.selectExit(this.outgoing.get(node), this.incoming.get(node)))); 111 | output += " |
46 | * GraphViz gv = new GraphViz(); 47 | * gv.addln(gv.start_graph()); 48 | * gv.addln("A -> B;"); 49 | * gv.addln("A -> C;"); 50 | * gv.addln(gv.end_graph()); 51 | * System.out.println(gv.getDotSource()); 52 | * 53 | * String type = "gif"; 54 | * File out = new File("out." + type); // out.gif in this example 55 | * gv.writeGraphToFile( gv.getGraph( gv.getDotSource(), type ), out ); 56 | *57 | *