(Object s, int start, int end)
| 364 | } |
| 365 | |
| 366 | private String replaceRange(Object s, int start, int end) { |
| 367 | String st = s.toString(); |
| 368 | text.select(start, end); |
| 369 | text.replaceSelection(st); |
| 370 | //text.repaint(); |
| 371 | return st; |
| 372 | } |
| 373 | |
| 374 | private void forceCaretMoveToEnd() { |
| 375 | if (text.getCaretPosition() < cmdStart) { |
no test coverage detected