Exemplo n.º 1
0
 public static void sendInterruptingMessage(String message) {
   // Pop up a message which awaits action key input before vanishing
   if (display != null) {
     if (!awaitingInput) {
       display.showInterruptingMessage(message);
       awaitingInput = true;
     }
   }
 }