Name

javax.microedition.rms.RecordListener

Synopsis

This interface provides a listener for receiving record events (such as change, add, delete) from a record store. The recordAdded( ) method is called when a record has been added to a record store, recordChanged( ) is called after a record in a store has been changed, and recordDeleted( ) is called after a record has been deleted from a record store.

public interfaceRecordListener {
   public void recordAdded(RecordStore recordStore, int recordId);
   public void recordChanged(RecordStore recordStore, int recordId);
   public void recordDeleted(RecordStore recordStore, int recordId);
}

Get Wireless Java now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.