Create and initialize the MIDlet.
// The arg-<n> properties are generic command arguments
String suiteArg = getAppProperty("arg-0");
if (suiteArg == null) {
System.err.println("Suite ID argument missing.");
System.err.println("Suite remover arguments: <suite ID>");
notifyDestroyed();
return;
}
try {
suiteId = Integer.parseInt(suiteArg);
} catch (Throwable t) {
System.err.println("Suite ID: " + t.getMessage());
notifyDestroyed();
}
new Thread(this).start();