*/
public void outputPaddingRectangle(final Area area) {
if (! (area instanceof BackgroundArea)) {
return;
}
final BackgroundArea backgroundArea = (BackgroundArea) area;
final StringBuilder buffer = new StringBuilder();
outputAttribute(buffer, "x", backgroundArea.prOriginX());
outputAttribute(buffer, "y", backgroundArea.prOriginY());
outputAttribute(buffer, "ipd", backgroundArea.prIpd());
outputAttribute(buffer, "bpd", backgroundArea.prBpd());
this.writeEmptyElement("padding-rectangle", buffer);
}