(Object obj)
| 376 | } |
| 377 | |
| 378 | @Override |
| 379 | public boolean equals(Object obj) { |
| 380 | if (this == obj) |
| 381 | return true; |
| 382 | if (obj == null) |
| 383 | return false; |
| 384 | if (getClass() != obj.getClass()) |
| 385 | return false; |
| 386 | Onda other = (Onda) obj; |
| 387 | if (!getEnclosingInstance().equals(other.getEnclosingInstance())) |
| 388 | return false; |
| 389 | return Arrays.equals(dadosOndas, other.dadosOndas) && Objects.equals(data, other.data); |
| 390 | } |
| 391 | |
| 392 | @Override |
| 393 | public String toString() { |
nothing calls this directly
no test coverage detected