| |
|
| java.lang.Object com.sun.midp.main.RuntimeInfo
RuntimeInfo | class RuntimeInfo (Code) | | Structure containing the run time information about the midlet.
|
Field Summary | |
int | memoryReserved The minimum amount of memory guaranteed to be available to the isolate
at any time. | int | memoryTotal The total amount of memory that the isolate can reserve. | int | priority Priority of the isolate (< 0 if not set). | String | profileName Name of the VM profile that should be used for the new isolate. | int | usedMemory The approximate amount of object heap memory currently
used by the isolate. |
Method Summary | |
public String | toString() Returns the string form of this object. |
memoryReserved | int memoryReserved(Code) | | The minimum amount of memory guaranteed to be available to the isolate
at any time. Used to pass a parameter to midlet_create_start(),
< 0 if not used.
|
memoryTotal | int memoryTotal(Code) | | The total amount of memory that the isolate can reserve.
Used to pass a parameter to midlet_create_start(), < 0 if not used.
|
priority | int priority(Code) | | Priority of the isolate (< 0 if not set).
|
profileName | String profileName(Code) | | Name of the VM profile that should be used for the new isolate.
Used (1) to pass a parameter to midlet_create_start();
(2) to get a profile's name of the given isolate in run time.
|
usedMemory | int usedMemory(Code) | | The approximate amount of object heap memory currently
used by the isolate.
|
RuntimeInfo | RuntimeInfo()(Code) | | Constructor
|
toString | public String toString()(Code) | | Returns the string form of this object.
displayable string representation of this object |
|
|
|