com.sun.data.provider
Interface TransactionalDataListener

All Superinterfaces:
DataListener, java.util.EventListener
All Known Implementing Classes:
TransactionalDataAdapter

public interface TransactionalDataListener
extends DataListener

TransactionalDataListener is an event listener interface that supports processing events produced by a corresponding TransactionalDataProvider instance, in addition to those fired by the underlying DataProvider.


Method Summary
 void changesCommitted(TransactionalDataProvider provider)
          The commitChanges() method was called on the specified TransactionalDataProvider.
 void changesReverted(TransactionalDataProvider provider)
          The revertChanges() method was called on the specified TransactionalDataProvider.
 
Methods inherited from interface com.sun.data.provider.DataListener
providerChanged, valueChanged
 

Method Detail

changesCommitted

void changesCommitted(TransactionalDataProvider provider)

The commitChanges() method was called on the specified TransactionalDataProvider.

Parameters:
provider - TransactionalDataProvider on which this event occurred

changesReverted

void changesReverted(TransactionalDataProvider provider)

The revertChanges() method was called on the specified TransactionalDataProvider.

Parameters:
provider - TransactionalDataProvider on which this event occurred