Package com.moneydance.apps.md.model

Examples of com.moneydance.apps.md.model.TransactionSet


    @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());
View Full Code Here

TOP

Related Classes of com.moneydance.apps.md.model.TransactionSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.