()
| 434 | } |
| 435 | |
| 436 | private void showHistoryLine() { |
| 437 | String showline; |
| 438 | if ( histLine == 0 ) |
| 439 | showline = startedLine; |
| 440 | else |
| 441 | showline = (String)history.elementAt( history.size() - histLine ); |
| 442 | |
| 443 | replaceRange( showline, cmdStart, textLength() ); |
| 444 | text.setCaretPosition(textLength()); |
| 445 | text.repaint(); |
| 446 | } |
| 447 | |
| 448 | String ZEROS = "000"; |
| 449 |
no test coverage detected