Class AccountBookListener

java.lang.Object
com.infinitekind.moneydance.model.AccountBookListener

public abstract class AccountBookListener
extends java.lang.Object
Created by sreilly - 2014.03.06 17:37
  • Constructor Summary

    Constructors 
    Constructor Description
    AccountBookListener()  
  • Method Summary

    Modifier and Type Method Description
    abstract void accountBookDataReplaced​(AccountBook book)
    This is called when the entire data set from the account book has been replaced.
    abstract void accountBookDataUpdated​(AccountBook book)
    This is called when the data is incrementally updated, probably from sync data that is received from elsewhere.
    void balancesHaveChanged​(AccountBook book)
    This is called when any account balances have changed
    void syncingBegan​(AccountBook book)
    Called when syncing has begun
    void syncingFinished​(AccountBook book, boolean success, java.lang.String errorMessageIfAny)
    Called when syncing has finished

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

  • Method Details

    • accountBookDataReplaced

      public abstract void accountBookDataReplaced​(AccountBook book)
      This is called when the entire data set from the account book has been replaced. When you get this you should reload everything, but item IDs will maintain consistency.
    • accountBookDataUpdated

      public abstract void accountBookDataUpdated​(AccountBook book)
      This is called when the data is incrementally updated, probably from sync data that is received from elsewhere.
    • balancesHaveChanged

      public void balancesHaveChanged​(AccountBook book)
      This is called when any account balances have changed
    • syncingBegan

      public void syncingBegan​(AccountBook book)
      Called when syncing has begun
    • syncingFinished

      public void syncingFinished​(AccountBook book, boolean success, java.lang.String errorMessageIfAny)
      Called when syncing has finished