Exemplo n.º 1
0
 public boolean equals(Ad o) {
   return title.equals(o.getTitle())
       && price == o.getPrice()
       && location.equals(o.getLocation())
       && link.equals(o.getLink())
       && date.equals(o.getDate());
 }