(String address)
| 54 | } |
| 55 | |
| 56 | public void setAddress(String address) { |
| 57 | boolean changed=!Util.match(this.address, address); |
| 58 | super.setAddress(address); |
| 59 | if(changed) |
| 60 | renameThreads(); |
| 61 | } |
| 62 | |
| 63 | public void setClusterName(String cluster_name) { |
| 64 | boolean changed=!Util.match(this.clusterName, cluster_name); |
nothing calls this directly
no test coverage detected