(parent)
| 249 | } |
| 250 | |
| 251 | setParent(parent) { |
| 252 | this.parentNode = parent; |
| 253 | this.path = this.id; |
| 254 | if (this.id) |
| 255 | if (parent !== null && parent !== undefined && parent.path !== undefined) { |
| 256 | this.path = parent.path + '/' + this.id; |
| 257 | } else { |
| 258 | this.path = '/browser/' + this.id; |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | getData() { |
| 263 | if (this.data === undefined) { |
no outgoing calls
no test coverage detected