Interface AccountListener
public interface AccountListener
Interface implemented by objects that want to receive
notifications when an account is modified.
-
Method Summary
Modifier and Type Method Description void
accountAdded(Account parentAccount, Account newAccount)
Is called when an account is added.void
accountBalanceChanged(Account account)
Is called when the account balance is changedvoid
accountDeleted(Account parentAccount, Account deletedAccount)
Is called when an account is deleted.void
accountModified(Account account)
Is called when some aspect of the account is modified, such as account name, currency, etc.
-
Method Details
-
accountModified
Is called when some aspect of the account is modified, such as account name, currency, etc. -
accountBalanceChanged
Is called when the account balance is changed -
accountDeleted
Is called when an account is deleted. Note: The deletedAccount is no longer in the account tree, so be careful not to make a reference to this account in any transactions or reminders. Available as of build 256 -
accountAdded
Is called when an account is added. Available as of build 256
-