(container)
| 78 | code.behavior.onReveal(code); |
| 79 | } |
| 80 | doFindPrevious(container) { |
| 81 | var code = this.data.CODE; |
| 82 | code.focus(); |
| 83 | code.findAgain(-1); |
| 84 | code.behavior.onSelected(code); |
| 85 | code.behavior.onReveal(code); |
| 86 | } |
| 87 | doFindSelection(container) { |
| 88 | var data = this.data; |
| 89 | var code = data.CODE; |
nothing calls this directly
no test coverage detected