Exemplo n.º 1
0
 public static String findPerson(int port, InetAddress address) {
   String name = null;
   for (Client h : threads) {
     if (port == h.port && address.equals(h.address)) {
       name = h.nama;
     }
   }
   return name;
 }