282283284285286287288
} /** * @see com.hp.hpl.jena.graph.Graph#getTransactionHandler() */ public TransactionHandler getTransactionHandler() { return new SimpleTransactionHandler(); }
50515253545556
@Override public TransactionHandler getTransactionHandler() { // AKA "no". return new SimpleTransactionHandler() ; }
144145146147148149
Answer a transaction handler bound to this graph. The default is SimpleTransactionHandler, which handles <i>no</i> transactions. */ @Override public TransactionHandler getTransactionHandler() { return new SimpleTransactionHandler(); }