(treeNode)
| 139 | } |
| 140 | |
| 141 | itemData(treeNode) { |
| 142 | let node = this.findNodeByDomElement(treeNode); |
| 143 | if (node === undefined || node === null) { |
| 144 | return undefined; |
| 145 | } |
| 146 | return node.getData(); |
| 147 | } |
| 148 | |
| 149 | selected() { |
| 150 | return this.selectedNode; |
nothing calls this directly
no test coverage detected