Exceptions and Description |
---|
javax.microedition.midlet.MIDletStateChangeException
MIDletStateChangeException is no longer used.
MIDlet s that throw MIDletStateChangeException will be
destroyed. |
Method and Description |
---|
javax.microedition.midlet.MIDlet.checkPermission(String)
This method is deprecated and MUST never been called.
It is still there for the sake of backward compatibility with
IMP-NG.
|
javax.microedition.rms.RecordStore.getSize()
Previously calls to
getSize() could not
accomodate a RecordStore larger than Integer.MAX-VALUE
. To query the size of a RecordStore use
RecordStore.getRecordStoreInfo() and RecordStoreInfo.getSize() ,
which returns a long and can accomodate RecordStore sizes
up to Long.MAX_VALUE .
Returns the amount of space, in bytes, that the record store
occupies. The size returned includes any overhead associated
with the implementation, such as the data structures
used to hold the state of the record store, tags etc. |
javax.microedition.rms.RecordStore.getSizeAvailable()
Previously calls to
getSize() could not
accomodate a RecordStore larger than Integer.MAX-VALUE
. To query the size of a RecordStore use
RecordStore.getRecordStoreInfo() and RecordStoreInfo.getSize() ,
which returns a long and can accomodate RecordStore sizes
up to Long.MAX_VALUE .
Returns the amount of additional room (in bytes) available for
this record store to grow. Note that this is not necessarily
the amount of extran application-level data which can be stored,
as implementations may store additional data structures with
each record to support integration with native applications,
synchronization, tag data etc. |
javax.microedition.midlet.MIDlet.notifyPaused()
This method is deprecated and MUST never been called.
|
javax.microedition.midlet.MIDlet.pauseApp()
This method is deprecated and MUST never been called.
|
javax.microedition.midlet.MIDlet.resumeRequest()
This method is deprecated and MUST never been called.
|
Constructor and Description |
---|
javax.microedition.midlet.MIDletStateChangeException()
MIDletStateChangeException is no longer used.
MIDlet s that throw MIDletStateChangeException will be
destroyed. |
javax.microedition.midlet.MIDletStateChangeException(String)
MIDletStateChangeException is no longer used.
MIDlet s that throw MIDletStateChangeException will be
destroyed. |
Copyright (c) 2013, Oracle and/or its affiliates. All Rights Reserved. Use of this specification is subject to license terms.