(int index)
| 82 | } |
| 83 | |
| 84 | public void delete(int index) { |
| 85 | try { |
| 86 | rs.deleteRecord(getRecordId(index)); |
| 87 | indexes.removeElementAt(index); |
| 88 | } catch (Exception e) {} |
| 89 | } |
| 90 | |
| 91 | public void deleteAll() { |
| 92 | try { |
nothing calls this directly
no test coverage detected