(int rowIndex, boolean selected)
| 477 | } |
| 478 | |
| 479 | public void setLabelSelected(int rowIndex, boolean selected) { |
| 480 | if (rowIndex >= 0 && rowIndex < this.centerLabels.size()) { |
| 481 | setLabelSelected(this.centerLabels.get(rowIndex), selected); |
| 482 | } |
| 483 | } |
| 484 | |
| 485 | public void setLabelSelected(Label label, boolean selected) { |
| 486 | if (selected) { |
no test coverage detected