| java.lang.Object com.sun.midp.midletsuite.MIDletSuiteInfo
All known Subclasses: com.sun.midp.appmanager.RunningMIDletSuiteInfo,
MIDletSuiteInfo | public class MIDletSuiteInfo (Code) | | Simple attribute storage for MIDlet suites
|
Constructor Summary | |
public | MIDletSuiteInfo(int theID) Constructs a MIDletSuiteInfo object for a suite. | public | MIDletSuiteInfo(int theID, String theMidletToRun, String theDisplayName, boolean isEnabled) Constructs a MIDletSuiteInfo object for a suite. | public | MIDletSuiteInfo(int theID, MIDletSuiteImpl theMidletSuite) Constructs a MIDletSuiteInfo object for a suite. |
Method Summary | |
public boolean | hasSingleMidlet() Checks if the midlet suite contains single or multiple midlets. | void | init(int theID, MIDletSuiteImpl theMidletSuite) Initializes MIDletSuiteInfo object. | public String | toString() Returns a string representation of the MIDletSuiteInfo object. |
displayName | public String displayName(Code) | | Display name of the MIDlet suite.
|
enabled | public boolean enabled(Code) | | Is this suite enabled.
|
iconName | public String iconName(Code) | | Icon's name for this suite.
|
midletToRun | public String midletToRun(Code) | | Name of the MIDlet to run.
|
numberOfMidlets | public int numberOfMidlets(Code) | | Is this single MIDlet MIDlet suite.
|
preinstalled | public boolean preinstalled(Code) | | Is this suite preinstalled.
|
storageId | public int storageId(Code) | | ID of the storage where the MIDlet is installed.
|
suiteId | public int suiteId(Code) | | ID of the MIDlet suite.
|
trusted | public boolean trusted(Code) | | Is this suite trusted.
|
MIDletSuiteInfo | public MIDletSuiteInfo(int theID)(Code) | | Constructs a MIDletSuiteInfo object for a suite.
Parameters: theID - ID the system has for this suite |
MIDletSuiteInfo | public MIDletSuiteInfo(int theID, String theMidletToRun, String theDisplayName, boolean isEnabled)(Code) | | Constructs a MIDletSuiteInfo object for a suite.
Parameters: theID - ID the system has for this suite Parameters: theMidletToRun - Class name of the only midlet in the suite Parameters: theDisplayName - Name to display to the user Parameters: isEnabled - true if the suite is enabled |
MIDletSuiteInfo | public MIDletSuiteInfo(int theID, MIDletSuiteImpl theMidletSuite)(Code) | | Constructs a MIDletSuiteInfo object for a suite.
Parameters: theID - ID the system has for this suite Parameters: theMidletSuite - MIDletSuite information |
hasSingleMidlet | public boolean hasSingleMidlet()(Code) | | Checks if the midlet suite contains single or multiple midlets.
true is this midlet suite contains only one midlet,false otherwise |
init | void init(int theID, MIDletSuiteImpl theMidletSuite)(Code) | | Initializes MIDletSuiteInfo object.
Parameters: theID - ID the system has for this suite Parameters: theMidletSuite - MIDletSuite information |
toString | public String toString()(Code) | | Returns a string representation of the MIDletSuiteInfo object.
For debug only.
|
|
|