Exemplo n.º 1
0
 public boolean equals(Object obj) {
   if (obj instanceof School == false) return false;
   if (this == obj) return true;
   School other = (School) obj;
   return new EqualsBuilder().append(getId(), other.getId()).isEquals();
 }