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
All Methods Instance Methods Abstract Methods Concrete Methods 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
-
-
-
Method Detail
-
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
-
-