@SuppressWarnings("unused")
public static void listTransactionCounts(BulkSecInfo currentInfo) {
TreeSet<Account> allAccts = BulkSecInfo.getSelectedSubAccounts(
currentInfo.getRoot(), Account.ACCOUNT_TYPE_INVESTMENT,
Account.ACCOUNT_TYPE_SECURITY);
TransactionSet transSet = currentInfo.getRoot().getTransactionSet();
for (Account account : allAccts) {
TxnSet txnSet = transSet.getTransactionsForAccount(account);
System.out.println("Parent Acct: "
+ account.getParentAccount().getAccountName()
+ " Account: " + account.getAccountName() + " Size: "
+ txnSet.getSize());