ConstructorparammidletClassName name of the suite's MIDlet classparammidletSuite internal MIDlet suite representation super(midletSuite); this.midletClassName = midletClassName; if (suiteName == null) { suiteName = midletClassName; } // no support for internal suites with more than one MIDlet yet if (totalMIDlets > 1) { totalMIDlets = 1; }
super(midletSuite); this.midletClassName = midletClassName; if (suiteName == null) { suiteName = midletClassName; } // no support for internal suites with more than one MIDlet yet if (totalMIDlets > 1) { totalMIDlets = 1; }
Gets suite IDreturnsuite ID as String return INTERNAL_SUITE_ID;
return INTERNAL_SUITE_ID;
Tests if this suite is externalreturntrue, if this suite is external return false;
return false;
Updates list of suite's MIDlets suiteMIDlets = new Vector(totalMIDlets); AutoMIDletDescriptorImpl midlet = null; midlet = new AutoMIDletDescriptorImpl(this, suiteName, midletClassName); suiteMIDlets.addElement(midlet);
suiteMIDlets = new Vector(totalMIDlets); AutoMIDletDescriptorImpl midlet = null; midlet = new AutoMIDletDescriptorImpl(this, suiteName, midletClassName); suiteMIDlets.addElement(midlet);