Replace the text on a specified line.
(int line, String what)
| 1454 | * Replace the text on a specified line. |
| 1455 | */ |
| 1456 | @SuppressWarnings("unused") |
| 1457 | public void setLineText(int line, String what) { |
| 1458 | startCompoundEdit(); |
| 1459 | textarea.select(getLineStartOffset(line), getLineStopOffset(line)); |
| 1460 | textarea.setSelectedText(what); |
| 1461 | stopCompoundEdit(); |
| 1462 | } |
| 1463 | |
| 1464 | |
| 1465 | /** |
nothing calls this directly
no test coverage detected