Fixed class name on Example.java
This commit is contained in:
		@@ -1,7 +1,7 @@
 | 
				
			|||||||
import javax.microedition.lcdui.*;
 | 
					import javax.microedition.lcdui.*;
 | 
				
			||||||
import javax.microedition.midlet.MIDlet;
 | 
					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 Form screen = new Form("Example MIDlet");
 | 
				
			||||||
    private Command exit = new Command("Exit", Command.EXIT, 1);
 | 
					    private Command exit = new Command("Exit", Command.EXIT, 1);
 | 
				
			||||||
    private Display display = Display.getDisplay(this);
 | 
					    private Display display = Display.getDisplay(this);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user