| com.sun.midp.jump.installer.StorageAccessInterface
All known Subclasses: com.sun.midp.jump.midletsuite.MIDletSuiteStorageAccessor,
StorageAccessInterface | public interface StorageAccessInterface (Code) | | Abstracts out the operation against the midlet repository class,
com.sun.midp.midletsuite.MIDletSuiteStorage ,
needed from the jump code.
|
Method Summary | |
public JUMPContent[] | convertToMIDletApplications(int suiteId) Takes the midlet suite ID and converts it to the
JUMPContent instances, where each midlet in the suite is
a separate JUMPContent . | public int[] | getInstalledMIDletSuiteIds() Gets the list of midlet suite IDs installed in the repository
currently. | public void | remove(int suiteId) Removes the midlet suite from the repository. |
convertToMIDletApplications | public JUMPContent[] convertToMIDletApplications(int suiteId)(Code) | | Takes the midlet suite ID and converts it to the
JUMPContent instances, where each midlet in the suite is
a separate JUMPContent .
Parameters: The - midlet suite id The list of JUMPContent , a zero length array if the midlet suite is not in the repository. |
getInstalledMIDletSuiteIds | public int[] getInstalledMIDletSuiteIds()(Code) | | Gets the list of midlet suite IDs installed in the repository
currently.
The list of installed midlet suites. |
remove | public void remove(int suiteId)(Code) | | Removes the midlet suite from the repository. Does nothing
if the midlet suite is not installed.
Parameters: The - midlet suite id to delete. |
|
|