Exemplo n.º 1
0
 public void enviarListaNombres() throws IOException {
   outputObj.writeObject(controladorC.getListaSeleccionados());
 }
Exemplo n.º 2
0
 public void recibirNombres() throws IOException, ClassNotFoundException {
   ArrayList<String> array = (ArrayList<String>) inputObj.readObject();
   controladorC.recibirLista(array);
 }