@Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((atividade == null) ? 0 : atividade.hashCode()); result = prime * result + ((documento == null) ? 0 : documento.hashCode()); return result; }
@Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; RegistroAtividadeComplementar other = (RegistroAtividadeComplementar) obj; if (atividade == null) { if (other.atividade != null) return false; } else if (!atividade.equals(other.atividade)) return false; if (documento == null) { if (other.documento != null) return false; } else if (!documento.equals(other.documento)) return false; return true; }