Package | Description |
---|---|
javax.microedition.rms |
The Mobile Information Device Profile provides a mechanism for
MIDlets to persistently store data and later retrieve it.
|
Modifier and Type | Method and Description |
---|---|
static RecordStore |
RecordStore.openRecordStore(String recordStoreName,
boolean createIfNecessary)
Open (and possibly create) a record store associated with the
given MIDlet suite.
|
static RecordStore |
RecordStore.openRecordStore(String recordStoreName,
boolean createIfNecessary,
int authmode,
boolean writable)
Open (and possibly create) a record store that can be shared
with other MIDlet suites.
|
static RecordStore |
RecordStore.openRecordStore(String recordStoreName,
String vendorName,
String suiteName)
Open a record store associated with the named MIDlet suite.
|
Modifier and Type | Method and Description |
---|---|
void |
RecordListener.recordAdded(RecordStore recordStore,
int recordId)
Called when a record has been added to a record store.
|
void |
RecordListener.recordChanged(RecordStore recordStore,
int recordId)
Called after a record in a record store has been changed.
|
void |
RecordListener.recordDeleted(RecordStore recordStore,
int recordId)
Called after a record has been deleted from a record store.
|
Copyright (c) 1990, 2012, Oracle and/or its affiliates. All rights reserved.