com.moneydance.apps.md.model
Interface TransactionListener

All Known Implementing Classes:
RootAccount

public interface TransactionListener

An interface for objects that want to be notified when transactions in the TransactionSet are added, removed, or modified.


Method Summary
 void transactionAdded(AbstractTxn t)
          Called after a transaction has been added to the transaction set.
 void transactionModified(AbstractTxn t)
          Called after a transaction has been modified.
 void transactionRemoved(AbstractTxn t)
          Called after a transaction has been removed from the transaction set.
 

Method Detail

transactionRemoved

void transactionRemoved(AbstractTxn t)
Called after a transaction has been removed from the transaction set.


transactionAdded

void transactionAdded(AbstractTxn t)
Called after a transaction has been added to the transaction set.


transactionModified

void transactionModified(AbstractTxn t)
Called after a transaction has been modified.