(Object arg)
| 1759 | } |
| 1760 | |
| 1761 | public boolean equals(Object arg) { |
| 1762 | if((arg != null) && (arg instanceof Site)) { |
| 1763 | Site ss = (Site) arg; |
| 1764 | if(!(ss.name.equals(name))) return false; |
| 1765 | if(ss.lat.value != lat.value) return false; |
| 1766 | if(ss.longit.value != longit.value) return false; |
| 1767 | if(ss.stdz != stdz) return false; |
| 1768 | // close enough ... |
| 1769 | } |
| 1770 | return true; |
| 1771 | } |
| 1772 | |
| 1773 | public Site clone() { |
| 1774 | try { |
no outgoing calls
no test coverage detected