public interface AccountBalanceCalculator
| Modifier and Type | Method and Description | 
|---|---|
| AccountBalance | findAccountBalance(Collection balanceList,
                                    Transaction t)Given a collection of account balance records, returns either the account balance the given
 transaction should post against or a new account balance record | 
| void | updateAccountBalance(Transaction t,
                                        AccountBalance ab)Updates the given account balance record, based on the given transaction | 
AccountBalance findAccountBalance(Collection balanceList, Transaction t)
balanceList - a Collection of AccountBalance recordst - the transaction to postvoid updateAccountBalance(Transaction t, AccountBalance ab)
t - the transaction to postab - the account balance being posted againstCopyright © 2004–2015 The Kuali Foundation. All rights reserved.