/* */
/* */ public static final TransactionImple getTransaction()
/* */ {
/* 1249 */ TransactionImple tx = null;
/* */
/* 1251 */ BasicAction current = BasicAction.Current();
/* 1252 */ if (current != null)
/* */ {
/* 1254 */ Uid txid = current.get_uid();
/* */
/* 1256 */ tx = (TransactionImple)_transactions.get(txid);
/* 1257 */ if (tx == null) {
/* 1258 */ tx = new TransactionImple(current);
/* */ }