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 changed
    void 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

      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
    • accountAdded

      void accountAdded​(Account parentAccount, Account newAccount)
      Is called when an account is added. Available as of build 256