Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can A Midlet invoke another Midlet?

I been looking around and at sources like this one they say that a Midlet can invoke another if they are in the same suite, or if they are in the same namespace and in the same jar file.

I do not understand what a Midlet-Suite is?

Also after searching through the web I did not find any documentation or code examples for One Midlet invoking another Midlet.

like image 732
Kevin Boyd Avatar asked Aug 18 '09 18:08

Kevin Boyd


1 Answers

A MIDlet suite is basically the JAR file. There are many J2ME applications that contain several MIDlet classes in the jar, see some of Sun's examples that come with WTK.

Edit: There's an example called MMAPIDemos that comes with sun's WTK that uses 3 MIDlets in one suite.

like image 163
Orr Matarasso Avatar answered Sep 30 '22 00:09

Orr Matarasso