(Object p_equals_1_)
| 70 | } |
| 71 | |
| 72 | public boolean equals(Object p_equals_1_) |
| 73 | { |
| 74 | if (!(p_equals_1_ instanceof PathPoint)) |
| 75 | { |
| 76 | return false; |
| 77 | } |
| 78 | else |
| 79 | { |
| 80 | PathPoint pathpoint = (PathPoint)p_equals_1_; |
| 81 | return this.hash == pathpoint.hash && this.xCoord == pathpoint.xCoord && this.yCoord == pathpoint.yCoord && this.zCoord == pathpoint.zCoord; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | public int hashCode() |
| 86 | { |
no outgoing calls
no test coverage detected