()
| 471 | } |
| 472 | |
| 473 | @Override |
| 474 | public void calculateHeightMap() { |
| 475 | heightMap.clear(); |
| 476 | |
| 477 | int curHeight = getHeaderPadding(); |
| 478 | List<E> chatLines = Lists.newArrayList(rows); |
| 479 | for (Row row : chatLines) { |
| 480 | heightMap.add(curHeight); |
| 481 | curHeight += row.getLineHeight(); |
| 482 | } |
| 483 | } |
| 484 | |
| 485 | @Override |
| 486 | public int getRowWidth() { |
no test coverage detected