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 changedvoid
syncingBegan(AccountBook book)
Called when syncing has begunvoid
syncingFinished(AccountBook book, boolean success, java.lang.String errorMessageIfAny)
Called when syncing has finished
-
Constructor Details
-
AccountBookListener
public AccountBookListener()
-
-
Method Details
-
accountBookDataReplaced
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
This is called when the data is incrementally updated, probably from sync data that is received from elsewhere. -
balancesHaveChanged
This is called when any account balances have changed -
syncingBegan
Called when syncing has begun -
syncingFinished
Called when syncing has finished
-