コード例 #1
0
ファイル: Departement.java プロジェクト: HighX97/BDA_TP_02
 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;
   }
 }
コード例 #2
0
ファイル: Departement.java プロジェクト: HighX97/BDA_TP_02
 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;
   }
 }