Form aForm = new Form("Test");
aForm.append("Testinfo");
aForm.setCommandListener(this);
aForm.addCommand(new ExecutableCommand("Quit", Command.EXIT, 99)
{
public void execute(Object rArg)
{
queryQuitApp();
}
});
aForm.addCommand(new ExecutableCommand("Test Progress View",
Command.SCREEN, 1)
{
public void execute(Object rArg)
{
testProgressView();