boolean removeAgglomeration(Agglomeration agg) { if (this.agglomerations.remove(agg)) { System.out.println( "Le département " + agg.getNom() + " a été supprimé de la région " + this.getNom()); return true; } else { System.out.println( "Le département " + agg.getNom() + " n'a pas été trouvé dans la région " + this.getNom()); return false; } }
boolean addAgglomeration(Agglomeration agg) { if (this.agglomerations.add(agg)) { System.out.println( "Le département " + agg.getNom() + " a été ajouté à la région " + this.getNom()); return true; } else { System.out.println( "Le département " + agg.getNom() + " n'a pas été ajouté à la région " + this.getNom() + " car déja présent dans la collection des départements"); return false; } }