public Endereco getCamposChave() {
   Endereco retorno = new Endereco();
   retorno.setAtivo(this.ativo);
   retorno.setId_pessoa(this.id_pessoa);
   retorno.setRotulo(this.rotulo);
   return retorno;
 }
 public boolean equals(Object obj) {
   Endereco e = (Endereco) obj;
   if (this.id_pessoa.compareTo(e.getId_pessoa()) == 0 && this.rotulo.equals(e.getRotulo())) {
     return true;
   } else {
     return false;
   }
 }