Fixed class name on Example.java

This commit is contained in:
2025-10-24 20:05:28 -03:00
parent d6a3685426
commit f1b89b7c1b

View File

@@ -1,7 +1,7 @@
import javax.microedition.lcdui.*;
import javax.microedition.midlet.MIDlet;
public class OpenTTY extends MIDlet implements CommandListener {
public class Example extends MIDlet implements CommandListener {
private Form screen = new Form("Example MIDlet");
private Command exit = new Command("Exit", Command.EXIT, 1);
private Display display = Display.getDisplay(this);