()
| 129 | } |
| 130 | |
| 131 | recursivelyValidate() { |
| 132 | this.validateSelf() |
| 133 | this.childSetOrder.forEach((childSetID) => { |
| 134 | this.getChildSet(childSetID).children.forEach((node) => { |
| 135 | node.recursivelyValidate() |
| 136 | }) |
| 137 | }) |
| 138 | } |
| 139 | |
| 140 | recursivelyClearValidation() { |
| 141 | this.setValidity(true, '') |
no test coverage detected