Is anybody aware of Java implementations capable of displaying directed graphs in Swing? If possible, something compatible with the dot format would be ideal, though transliterating the output to ...
public class DemoGraphstream { void main() { System.setProperty("org.graphstream.ui", "swing"); Graph graph = new SingleGraph("Tutorial 1"); graph.addNode("A"); graph ...