*/
public class ExampleJSONSender {
public static void main(String args[]) {
Graph graph = new SingleGraph("Tutorial 1");
Viewer viewer = graph.display();
JSONSender sender = new JSONSender("localhost", 8080, "workspace0");
sender.setDebug(true);
graph.addSink(sender);
graph.addNode("A");
graph.addNode("B");
graph.addNode("C");
sleep();
graph.addEdge("AB", "A", "B");
graph.addEdge("BC", "B", "C");
graph.addEdge("CA", "C", "A");
sleep();
// graph.clear();
}