(DocumentEvent e)
| 1577 | } |
| 1578 | |
| 1579 | public void insertUpdate(DocumentEvent e) { |
| 1580 | if (!isInserting && !textarea.isOverwriteEnabled() && isDirectEdit()) { |
| 1581 | endTextEditHistory(); |
| 1582 | } |
| 1583 | |
| 1584 | if (!textarea.isOverwriteEnabled()) { |
| 1585 | isInserting = true; |
| 1586 | } |
| 1587 | } |
| 1588 | |
| 1589 | public void changedUpdate(DocumentEvent e) { |
| 1590 | endTextEditHistory(); |
nothing calls this directly
no test coverage detected