280281282283284285286287288289290
details.append("\n\n"); details.append(class1.getSimpleName()); details.append("\n-------------------------------------\n"); Table t = new Table(); t.addRow((Object[]) r.getHeaders()); for (X x : items) { t.addRow((Object[]) r.rowify(x)); }
283284285286287288289290291292293
Table t = new Table(); t.addRow((Object[]) r.getHeaders()); for (X x : items) { t.addRow((Object[]) r.rowify(x)); } String[] summary = r.summary(); if (summary != null) { t.addRow((Object[])summary);
288289290291292293294295296297298
t.addRow((Object[]) r.rowify(x)); } String[] summary = r.summary(); if (summary != null) { t.addRow((Object[])summary); } t.display(details); }