120121122123124125126
@Override protected void checkNotActive() { checkNotClosed() ; if ( sConn.haveUsedInTransaction() && isInTransaction() ) throw new JenaTransactionException("Currently in a transaction ("+getLocation()+")") ; }
126127128129130131132
} protected void checkNotClosed() { if ( isClosed ) throw new JenaTransactionException("Already closed") ; }
110111112113114115116
@Override protected void checkActive() { checkNotClosed() ; if ( sConn.haveUsedInTransaction() && ! isInTransaction() ) throw new JenaTransactionException("Not in a transaction ("+getLocation()+")") ; }
118119120121122123124
124125126127128129130
82838485868788
@Override protected void checkActive() { if ( haveUsedInTransaction && ! isInTransaction() ) throw new JenaTransactionException("Not in a transaction ("+getLocation()+")") ; }
89909192939495
@Override protected void checkNotActive() { if ( haveUsedInTransaction && isInTransaction() ) throw new JenaTransactionException("Currently in a transaction ("+getLocation()+")") ; }
105106107108109110111
113114115116117118119
119120121122123124125