Replace the text on a specified line.
(int line, String what)
| 1716 | * Replace the text on a specified line. |
| 1717 | */ |
| 1718 | public void setLineText(int line, String what) { |
| 1719 | startCompoundEdit(); |
| 1720 | textarea.select(getLineStartOffset(line), getLineStopOffset(line)); |
| 1721 | textarea.setSelectedText(what); |
| 1722 | stopCompoundEdit(); |
| 1723 | } |
| 1724 | |
| 1725 | |
| 1726 | /** |
nothing calls this directly
no test coverage detected