Constructs an instance.
Schedules standard MIDlets termination task to sandard timeout.parammidletList the MIDlet proxy list if (null == task) { task = new TimerTask() { public void run() { midletList.terminatePauseAll(); } }; timer.schedule(task, TIMEOUT); }
if (null == task) { task = new TimerTask() { public void run() { midletList.terminatePauseAll(); } }; timer.schedule(task, TIMEOUT); }
Cancels the timer. task.cancel(); task = null;
task.cancel(); task = null;