Deletes all the lines.
()
| 947 | |
| 948 | /** Deletes all the lines. */ |
| 949 | public synchronized void clear() { |
| 950 | if (vData==null) return; |
| 951 | vData.removeAllElements(); |
| 952 | iRowCount = 0; |
| 953 | selStart=-1; selEnd=-1; selOrigin=-1; selLine=-1; |
| 954 | adjustVScroll(); |
| 955 | tc.repaint(); |
| 956 | } |
| 957 | |
| 958 | /** Selects all the lines in this TextPanel. */ |
| 959 | public void selectAll() { |
no test coverage detected