package com.jcomeau.midp; import javax.microedition.lcdui.*; public class DemoList extends List { public DemoList() { super("Demo", IMPLICIT); addCommand(new Command("w00t!", Command.SCREEN, 1)); addCommand(new Command("bleah", Command.ITEM, 2)); setCommandListener(Demo.midlet); append("OK, do something and I'll show you what I see", null); } }