RecordListenerpublic interface RecordListener A listener interface for receiving Record Changed/Added/Deleted
events from a record store. |
Methods Summary |
---|
public abstract void | recordAdded(RecordStore recordStore, int recordId)Called when a record has been added to a record store.
| public abstract void | recordChanged(RecordStore recordStore, int recordId)Called after a record in a record store has been changed. If the
implementation of this method retrieves the record, it will
receive the changed version.
| public abstract void | recordDeleted(RecordStore recordStore, int recordId)Called after a record has been deleted from a record store. If the
implementation of this method tries to retrieve the record
from the record store, an InvalidRecordIDException will be thrown.
|
|