()
| 451 | } |
| 452 | |
| 453 | @Override |
| 454 | public void calculateHeightMap() { |
| 455 | heightMap.clear(); |
| 456 | |
| 457 | int curHeight = getHeaderPadding(); |
| 458 | List<E> chatLines = Lists.newArrayList(rows); |
| 459 | for (Row row : chatLines) { |
| 460 | heightMap.add(curHeight); |
| 461 | curHeight += row.getLineHeight(); |
| 462 | } |
| 463 | } |
| 464 | |
| 465 | @Override |
| 466 | public int getRowWidth() { |
no test coverage detected