예제 #1
0
 @Override
 protected void addFirstCell(
     SheetGraphics graphics, ReportContent reportContent, PdfPTable table) {
   CombatStatsContent content = reportContent.createSubContent(CombatStatsContent.class);
   TableCell cell = new TableCell(createCombatAttackList(graphics, content), Rectangle.BOX);
   cell.setPaddingBottom(2f);
   table.addCell(cell);
 }
예제 #2
0
 @Override
 protected void addThirdCell(
     SheetGraphics graphics, ReportContent reportContent, PdfPTable table) {
   CombatStatsContent content = reportContent.createSubContent(CombatStatsContent.class);
   addAsCell(graphics, table, content.getStunningChunks());
 }