import java.util.ArrayList;
/**
*
* @author juan
*/
public class Pais {
private String nombre;
private ArrayList
public ArrayList
return corredores;
}
public void setCorredores(ArrayList
this.corredores = corredores;
}
public Pais(String nombre) {
this.nombre = nombre;
corredores = new ArrayList<>();
}
public String getNombre() {
return nombre;
}
public boolean anhade(Corredor nuevo) {
boolean retorno = true;
try {
if (corredores.contains(nuevo)){
System.out.println("El corredor ya estaba incluido");
}
else
{
nuevo.setPais(this);
corredores.add(nuevo);
}
} catch (Exception e) {
retorno=false;
}
return retorno;
}
public void listarCorredores(){
System.out.println(nombre);
System.out.println("==============");
for (Corredor corredor : corredores) {
System.out.println(corredor);
}
}