(container)
| 71 | container.run(new FindTransition, container.first, findRow, null, 1); |
| 72 | } |
| 73 | doFindNext(container) { |
| 74 | var code = this.data.CODE; |
| 75 | code.focus(); |
| 76 | code.findAgain(1); |
| 77 | code.behavior.onSelected(code); |
| 78 | code.behavior.onReveal(code); |
| 79 | } |
| 80 | doFindPrevious(container) { |
| 81 | var code = this.data.CODE; |
| 82 | code.focus(); |
nothing calls this directly
no test coverage detected