Converts a row number from the view co-ordinates system to the model's. @param viewRow the row number in the view. @return the corresponding row number in the model. @see #rowModelToView(int)
(int viewRow)
| 374 | * @see #rowModelToView(int) |
| 375 | */ |
| 376 | public int rowViewToModel(int viewRow){ |
| 377 | return sortingModel.targetToSource(viewRow); |
| 378 | } |
| 379 | |
| 380 | /** |
| 381 | * Set the possibility for the user to hide/show a column by right-clicking |
no test coverage detected