graph.getTransactionHandler().commit();
System.out.println("commit Transaction.");
System.out.println("graph.isEmpty() = " + graph.isEmpty());
System.out.println("graph.getCount() = " + graph.getCount());
ExtendedIterator iter = graph.find(Node.ANY, Node.ANY, Node.ANY);
System.out.println ("\ngraph.find(Node.ANY, Node.ANY, Node.ANY) \nResult:");
for ( ; iter.hasNext() ; )
System.out.println ((Triple) iter.next());
graph.clear ();
System.out.println("\nCLEAR graph <Example6>");
System.out.println("graph.isEmpty() = " + graph.isEmpty());
System.out.println("Add 1 triples to graph <Example6>.");
graph.add(new Triple(foo1, bar1, baz1));
System.out.println("\nStart test Transaction Abort.");
graph.getTransactionHandler().begin();
System.out.println("begin Transaction.");
System.out.println("Add 2 triples to graph <Example6>.");
graph.add(new Triple(foo2, bar2, baz2));
graph.add(new Triple(foo3, bar3, baz3));
graph.getTransactionHandler().abort();
System.out.println("abort Transaction.");
System.out.println("End test Transaction Abort.\n");
System.out.println("graph.isEmpty() = " + graph.isEmpty());
System.out.println("graph.getCount() = " + graph.getCount());
iter = graph.find(Node.ANY, Node.ANY, Node.ANY);
System.out.println ("\ngraph.find(Node.ANY, Node.ANY, Node.ANY) \nResult:");
for ( ; iter.hasNext() ; )
System.out.println ((Triple) iter.next());
graph.clear ();
System.out.println("\nCLEAR graph <Example6>");
}