(Object root)
| 285 | } |
| 286 | |
| 287 | synchronized void swapRoot(Object root){ |
| 288 | validate(getValidator(), root); |
| 289 | Object oldroot = this.root; |
| 290 | this.root = root; |
| 291 | ++rev; |
| 292 | notifyWatches(oldroot,root); |
| 293 | } |
| 294 | |
| 295 | synchronized public void unbindRoot(){ |
| 296 | this.root = new Unbound(this); |
nothing calls this directly
no test coverage detected