예제 #1
0
  /** Metodo que verifica se duas SLocalidades são iguais */
  public boolean equals(Object o) {
    if (this == o) return true;

    if ((o == null) || (o.getClass() != this.getClass())) return false;

    SLocalidade sl = (SLocalidade) o;
    return this.localidades.equals(sl.get_Localidades());
  }
예제 #2
0
 /** Constructor de copia */
 public SLocalidade(SLocalidade t) {
   this.localidades = new TreeMap<String, Localidade>(t.get_Localidades());
 }