(search: Search)
| 68 | } |
| 69 | |
| 70 | public select(search: Search) { |
| 71 | this.deselect(); |
| 72 | if (search) { |
| 73 | this.selection = this.createUserSelection(search, true, false); |
| 74 | if (this.selection.included.length) { |
| 75 | this.activate(this.selection.included[0]); |
| 76 | } |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | public createUserSelection(search: Search, assign: boolean, rebase: boolean) { |
| 81 | const exec = new Exec(search, this.getColumns()); |
nothing calls this directly
no test coverage detected