public void call(String number) { Calendar calendar = Calendar.getInstance(); Traces.addLine("call: " + calendar.get(Calendar.MINUTE) + " " + calendar.get(Calendar.SECOND)); this.showCallScreen(number); try { this.platformRequest("tel:" + number); } catch (ConnectionNotFoundException ex) { Traces.addLine(ex.getMessage()); } }
public void startApp() { Traces.addLine("Midlet::startApp"); Displayable current = Display.getDisplay(this).getCurrent(); if (current == null) { this.showListScreen(); } }
public void onNotAnswered() { Calendar calendar = Calendar.getInstance(); Traces.addLine( "onNotAnswered: " + calendar.get(Calendar.MINUTE) + " " + calendar.get(Calendar.SECOND)); this.showTraceScreen(); }
public void onRequestError(String code) { Traces.addLine("Midlet::onRequestError"); this.showListScreen(); }
public void onRequestComplete(String response) { Traces.addLine("Midlet::onRequestComplete"); this.listScreen.updateList(response); }
public void destroyApp(boolean unconditional) { Traces.addLine("Midlet::destroyApp"); }
public void pauseApp() { Traces.addLine("Midlet::pauseApp"); }