@Override
protected void buildRowBody(ColRowRange rowRange, int row, int col)
throws ReportException {
//шапка закончена - дорисовываем ячейки
for(ColRowRange colRange: colsFlat) {
CellValue cell = format.getCell(colRange, rowRange);
CellPosition corner = new CellPosition(row, col++);
initCell(corner, new SheetCell(parent, cell, tableListener));
}
}