Bom dia,
Meu helloworld, não está gerando, a saida prevista. Abaixo segue o codigo:
package helloworld;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.TextBox;
import javax.microedition.midlet.MIDlet;
/**
*
* @author Kaos
*/
public class HelloWorld extends MIDlet implements CommandListener {
private Display display;
private TextBox textBox;
private Command cmSair;
public HelloWorld() {
this.display = Display.getDisplay(this);
this.cmSair = new Command("Sair", Command.SCREEN, 1);
this.textBox = new TextBox("Titulo", "Texto", 50, 0);
this.textBox.addCommand(this.cmSair);
this.textBox.setCommandListener(this);
}
protected void startApp() {
this.display.setCurrent(textBox);
}
protected void destroyApp(boolean unconditional) {
}
protected void pauseApp() {
}
public void commandAction(Command c, Displayable d) {
if(c == cmSair) {
this.destroyApp(false);
this.notifyDestroyed();
}
}
}
Pelo que, entendi desse código, deveria ser aberto uma tela, com as mensagens e um botão. O código acima, foi tirado, do proprio forum: http://www.guj.com.br/article.show.logic?id=33 E sofreu, pequenas, alterações.
O emulador, gera a saida abaixo:
[URL=http://www.4shared.com/photo/wp0WBC1a/jme.html][/URL]
Não é exibido qualquer tipo de erro.
[]s