Interface AccountListener
-
public interface AccountListener
Interface implemented by objects that want to receive notifications when an account is modified.
-
-
Method Summary
All Methods Instance Methods Abstract Methods 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 Detail
-
accountModified
void accountModified(Account account)
Is called when some aspect of the account is modified, such as account name, currency, etc.
-
accountBalanceChanged
void accountBalanceChanged(Account account)
Is called when the account balance is changed
-
accountDeleted
void accountDeleted(Account parentAccount, Account deletedAccount)
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
-
-