()
| 475 | } |
| 476 | |
| 477 | @Override |
| 478 | public int getContentHeight() { |
| 479 | int height = bottomPadding + (getHeaderPadding() > 0 ? getHeaderPadding() + 8 : getHeaderPadding()); |
| 480 | List<E> chatLines = Lists.newArrayList(rows); |
| 481 | for (Row row : chatLines) { |
| 482 | height += row.getLineHeight(); |
| 483 | } |
| 484 | return height; |
| 485 | } |
| 486 | |
| 487 | public void calculateHeightMap() { |
| 488 | heightMap.clear(); |
no test coverage detected