258259260261262263264
if (currentTx == null || currentTx.getStatus() == TXSTATUS.INVALID) throw new OTransactionException("Transaction not started"); } private void init() { currentTx = new OTransactionNoTx(this); }
278279280281282283284
return true; } public void setDefaultTransactionMode() { if (!(currentTx instanceof OTransactionNoTx)) currentTx = new OTransactionNoTx(this); }
198199200201202203204
218219220221222223224
return true; } private void setDefaultTransactionMode() { if (!(currentTx instanceof OTransactionNoTx)) currentTx = new OTransactionNoTx(this); }
224225226227228229230
244245246247248249250
229230231232233234235
249250251252253254255
385386387388389390391
return TYPE; } public void setDefaultTransactionMode() { if (!(currentTx instanceof OTransactionNoTx)) currentTx = new OTransactionNoTx(this); }
394395396397398399400