()
| 325 | |
| 326 | /// {@inheritDoc} |
| 327 | @Override |
| 328 | protected void laidOut() { |
| 329 | super.laidOut(); |
| 330 | if (isScrollable() && isInitialized() && scrollToSelected) { |
| 331 | int index = model.getSelectedIndex(); |
| 332 | if (index >= 0) { |
| 333 | selectElement(index); |
| 334 | } |
| 335 | } |
| 336 | } |
| 337 | |
| 338 | /// {@inheritDoc} |
| 339 | @Override |
no test coverage detected