This interface is omplemented by all classes, which act as a parent for Destroyables. @author wglas
| 34 | * @author wglas |
| 35 | */ |
| 36 | public interface DestroyableParent |
| 37 | { |
| 38 | |
| 39 | /** |
| 40 | * Register a Destroyable for recursive destruction. |
| 41 | * |
| 42 | * @param destroyable The child to be registered. |
| 43 | */ |
| 44 | public void register(Destroyable destroyable); |
| 45 | |
| 46 | /** |
| 47 | * Deregister a Destroyable from recursive destruction. |
| 48 | * |
| 49 | * @param destroyable The child to be deregistered. |
| 50 | */ |
| 51 | public void deregister(Destroyable destroyable); |
| 52 | |
| 53 | } |
no outgoing calls
no test coverage detected