86878889909192
private ValidatingFlowExcelOutputProcessor(final Configuration config, final OutputStream outputStream, final ResourceManager resourceManager) { super(config, outputStream, resourceManager); countBoxesStep = new CountBoxesStep(); }
150151152153154155156
private CountBoxesStep countBoxesStep; private ValidatingHtmlPrinter(final ResourceManager resourceManager) { super(resourceManager); countBoxesStep = new CountBoxesStep(); }
636465666768697071
super(outputProcessor); this.paginationStep = new FlowPaginationStep(); this.fillPhysicalPagesStep = new FillFlowPagesStep(); this.cleanFlowBoxesStep = new CleanFlowBoxesStep(); this.applyAutoCommitPageHeaderStep = new ApplyAutoCommitPageHeaderStep(); this.countBoxesStep = new CountBoxesStep(); initialize(); }
56575859606162636465
{ super(outputProcessor); this.paginationStep = new PaginationStep(); this.fillPhysicalPagesStep = new FillPhysicalPagesStep(); this.cleanPaginatedBoxesStep = new CleanPaginatedBoxesStep(); this.countBoxesStep = new CountBoxesStep(); this.orphanStep = new OrphanStep(); this.widowStep = new WidowStep(); initialize(); }
5253545556575859606162
private int pageCount; public StreamingRenderer(final OutputProcessor outputProcessor) { super(outputProcessor); this.countBoxesStep = new CountBoxesStep(); this.cleanBoxesStep = new CleanFlowBoxesStep(); this.applyAutoCommitPageHeaderStep = new ApplyAutoCommitPageHeaderStep(); this.fillPhysicalPagesStep = new FillFlowPagesStep(); initialize();
358359360361362363364365366367368369
if (isParanoidModelChecks() == false) { return; } final CountBoxesStep step = new CountBoxesStep(); final int count = step.countChildren(this); if (count != descendantCount) { throw new InvalidReportStateException(getClass().getSimpleName() + "(" + getName() + "): Counted boxes of " + count + " but claimed to have " + descendantCount); }