}
blockArea.end();
+
+ area.setMaxHeight(area.getMaxHeight() - spaceLeft + blockArea.getMaxHeight());
+
area.addChild(blockArea);
/* should this be combined into above? */
area.getIDReferences().configureID(id, area);
}
+ int spaceLeft = area.spaceLeft();
this.areaContainer =
new AreaContainer(propMgr.getFontState(area.getFontInfo()), 0, 0, area.getAllocationWidth(),
area.spaceLeft(), Position.STATIC);
}
addedHeader = true;
tableHeader.resetMarker();
+ area.setMaxHeight(area.getMaxHeight() - spaceLeft + this.areaContainer.getMaxHeight());
}
if (tableFooter != null && !this.omitFooterAtBreak && !addedFooter) {
if ((status = tableFooter.layout(areaContainer)).
} else {
bodyCount++;
}
+ area.setMaxHeight(area.getMaxHeight() - spaceLeft + this.areaContainer.getMaxHeight());
if (tableFooter != null && !this.omitFooterAtBreak) {
// move footer to bottom of area and move up body
// space before and after footer will make this wrong
area.getIDReferences().configureID(id, area);
}
+ int spaceLeft = area.spaceLeft();
this.areaContainer = new AreaContainer(propMgr.getFontState(area.getFontInfo()),
-area.getBorderLeftWidth(),
-area.getBorderTopWidth() + area.getHeight(),
endKeepGroup = true;
}
lastRow = row;
+ area.setMaxHeight(area.getMaxHeight() - spaceLeft + this.areaContainer.getMaxHeight());
}
area.addChild(areaContainer);
areaContainer.end();
area.getIDReferences().configureID(id,area);
}
+ int spaceLeft = area.spaceLeft();
this.areaContainer =
new AreaContainer(propMgr.getFontState(area.getFontInfo()),
startOffset - area.getBorderLeftWidth(),
return new Status(Status.AREA_FULL_SOME);
}
}
+ area.setMaxHeight(area.getMaxHeight() - spaceLeft + this.areaContainer.getMaxHeight());
}
areaContainer.end();
area.addChild(areaContainer);
area.getIDReferences().configureID(id, area);
}
+ int spaceLeft = area.spaceLeft();
this.areaContainer = new AreaContainer(propMgr.getFontState(area.getFontInfo()),
-area.getBorderLeftWidth(),
-area.getBorderTopWidth(), area.getAllocationWidth(),
}
}
+ area.setMaxHeight(area.getMaxHeight() - spaceLeft + this.areaContainer.getMaxHeight());
+
for (int i = 0; i < numChildren; i++) {
TableCell cell = (TableCell) children.elementAt(i);
cell.setRowHeight(largestCellHeight);