Replace the entire contents of the front-most tab. Note that this does a compound edit, so internal callers may want to use textarea.setText() if this is part of a larger compound edit.
(String what)
| 1630 | * if this is part of a larger compound edit. |
| 1631 | */ |
| 1632 | public void setText(String what) { |
| 1633 | startCompoundEdit(); |
| 1634 | textarea.setText(what); |
| 1635 | stopCompoundEdit(); |
| 1636 | } |
| 1637 | |
| 1638 | |
| 1639 | public void insertText(String what) { |
no test coverage detected