graph.addAttribute("ui.antialias");
graph.addAttribute("ui.stylesheet", "node { text-size:8; text-color: #0008; text-alignment: at-right; } edge { text-size:8; text-color: #0008; }");
graph.display(false);
source.addSink(graph);
source.begin(TestSourceGML.class.getResourceAsStream("example2.sif.gml"));
while(source.nextEvents()) {}
source.end();
}
catch(Exception e) {
e.printStackTrace();
}