Current current = OTS.get_current();
String[] transactionNames = new String[numberOfTransactionNames];
for (int index = 0; index < numberOfTransactionNames; index++)
{
current.begin();
transactionNames[index] = current.get_transaction_name();
current.commit(false);
}
for (int index1 = 0; index1 < numberOfTransactionNames - 1; index1++)