(int row, int col, boolean toggle, boolean extend)
| 208 | } |
| 209 | |
| 210 | public void changeSelection(int row, int col, boolean toggle, boolean extend) { |
| 211 | ScanQueueTag.TablesData dataEntry = ScanQueueTag.this.Udatas.get(convertRowIndexToModel(row)); |
| 212 | HRequestTextEditor.setMessage(dataEntry.requestResponse.getRequest(), true); |
| 213 | HResponseTextEditor.setMessage(dataEntry.requestResponse.getResponse(), false); |
| 214 | currentlyDisplayedItem = dataEntry.requestResponse; |
| 215 | super.changeSelection(row, col, toggle, extend); |
| 216 | } |
| 217 | } |
| 218 | |
| 219 | /** |
nothing calls this directly
no test coverage detected