()
| 461 | } |
| 462 | |
| 463 | @Override |
| 464 | public int getContentHeight() { |
| 465 | int height = bottomPadding + (getHeaderPadding() > 0 ? (getHeaderPadding() + 8) : 0); |
| 466 | List<E> chatLines = Lists.newArrayList(rows); |
| 467 | for (Row row : chatLines) { |
| 468 | height += row.getLineHeight(); |
| 469 | } |
| 470 | return height; |
| 471 | } |
| 472 | |
| 473 | @Override |
| 474 | public void calculateHeightMap() { |
no test coverage detected