Clears the selection, if any.
()
| 972 | |
| 973 | /** Clears the selection, if any. */ |
| 974 | public void resetSelection() { |
| 975 | selStart=-1; |
| 976 | selEnd=-1; |
| 977 | selOrigin=-1; |
| 978 | selLine=-1; |
| 979 | if (iRowCount>0) |
| 980 | tc.repaint(); |
| 981 | } |
| 982 | |
| 983 | /** Creates a selection and insures it is visible. */ |
| 984 | public void setSelection (int startLine, int endLine) { |
no test coverage detected