protected void destroyApp(boolean unconditional) {
}
protected void pauseApp() {
}
}
import javax.microedition.lcdui.*;
public class Table
extends CustomItem
implements ItemCommandListener {
private final static Command CMD_EDIT = new Command("Edit",
Command.ITEM, 1);
private Display display;
private int rows = 5;
private int cols = 3;
private int dx = 50;
private int dy = 20;
private final static int UPPER = 0;
private final static int IN = 1;
private final static int LOWER = 2;
private int location = UPPER;
private int currentX = 0;
private int currentY = 0;
private String[][] data = new String[rows][cols];
// Traversal stuff
//indicating support of horizontal traversal internal to the CustomItem
boolean horz;
//indicating support for vertical traversal internal to the CustomItem.
boolean vert;