import javax.microedicion.* ; public class helloworld extends MIDlet{ public void pauseApp() {} public void destroyApp(boolean uncondicional) { notifyDestroyed( ); } public void startApp () { String name = getAppProperty("name"); Sustem.out.println("Midlet"+name+"says: Helloworld"); } }