(data, checked, deep)
| 276 | } |
| 277 | |
| 278 | setChecked(data, checked, deep) { |
| 279 | const node = this.getNode(data); |
| 280 | |
| 281 | if (node) { |
| 282 | node.setChecked(!!checked, deep); |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | getCurrentNode() { |
| 287 | return this.currentNode; |
no test coverage detected