Example #1
0
  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());
    }
  }
Example #2
0
  public void startApp() {
    Traces.addLine("Midlet::startApp");

    Displayable current = Display.getDisplay(this).getCurrent();
    if (current == null) {
      this.showListScreen();
    }
  }
Example #3
0
 public void onNotAnswered() {
   Calendar calendar = Calendar.getInstance();
   Traces.addLine(
       "onNotAnswered: " + calendar.get(Calendar.MINUTE) + " " + calendar.get(Calendar.SECOND));
   this.showTraceScreen();
 }
Example #4
0
 public void onRequestError(String code) {
   Traces.addLine("Midlet::onRequestError");
   this.showListScreen();
 }
Example #5
0
 public void onRequestComplete(String response) {
   Traces.addLine("Midlet::onRequestComplete");
   this.listScreen.updateList(response);
 }
Example #6
0
 public void destroyApp(boolean unconditional) {
   Traces.addLine("Midlet::destroyApp");
 }
Example #7
0
 public void pauseApp() {
   Traces.addLine("Midlet::pauseApp");
 }