FileDocCategorySizeDatePackage
AutoMIDletInfo.javaAPI DocphoneME MR2 API (J2ME)2307Wed May 02 18:00:08 BST 2007com.sun.midp.automation

AutoMIDletInfo

public class AutoMIDletInfo extends Object
Some info associated with AutoMIDletImpl

Fields Summary
int
suiteID
Suite ID
String
midletClassName
MIDlet's class name
MIDletProxy
midletProxy
When MIDlet is running: corresponding MIDletProxy
Isolate
midletIsolate
When MIDlet is running: corresponding Isolate
AutoMIDletImpl
midlet
When MIDlet is running: corresponding AutoMIDletImpl
boolean
startError
Indicates if there was error starting MIDlet
int
startErrorCode
Contains error code in case there was an error
String
startErrorDetails
Contains error details in case there was an error
Constructors Summary
AutoMIDletInfo(int suiteID, String midletClassName)
Constructor.

param
suiteID suite ID
param
midletClassName MIDlet's class name

        this.suiteID = suiteID;
        this.midletClassName = midletClassName;
        this.midletProxy = null;
        this.midletIsolate = null;
        this.midlet = null;
        this.startError = false;
        this.startErrorCode = 0;
        this.startErrorDetails = null;
    
Methods Summary