Exemplo n.º 1
0
 /** Ferma l'esecuzione della classe gioco. */
 public synchronized void stop() {
   if (!inCorso) return;
   inCorso = false;
   try {
     thread.join();
   } catch (InterruptedException e) {
     e.printStackTrace();
   }
 }
Exemplo n.º 2
0
 /** Fa partire l'esecuzione della classe Gioco. */
 public synchronized void start() {
   if (inCorso) return;
   inCorso = true;
   thread = new Thread(this);
   thread.start();
 }