Exemplo n.º 1
0
 public synchronized boolean turnEnd(String login) {
   ServerThread st = getClients().get(login.toLowerCase());
   if (st == null) {
     return false;
   } else {
     st.turnEnd();
     return true;
   }
 }