int paddingLeft;
int paddingRight;
+ String id;
+
ColorType borderColor;
int borderWidth;
int borderStyle;
this.borderStyle =
this.properties.get("border-style").getEnum();
+ this.id =
+ this.properties.get("id").getString();
+
if (area instanceof BlockArea) {
area.end();
}
startIndent += bodyIndent + distanceBetweenStarts;
}
+ area.getIDReferences().createID(id,area);
+
this.marker = 0;
if (breakBefore == BreakBefore.PAGE) {
}
if ( marker==0 ) {
- // initialize id
- String id = this.properties.get("id").getString();
- area.getIDReferences().initializeID(id,area);
+ area.getIDReferences().configureID(id,area);
}
this.blockArea =
blockArea.setBorderWidth(borderWidth, borderWidth, borderWidth, borderWidth);
blockArea.setBorderColor(borderColor, borderColor, borderColor, borderColor);
blockArea.start();
- layoutStart(area); // performs
blockArea.setAbsoluteHeight(area.getAbsoluteHeight());
blockArea.setIDReferences(area.getIDReferences());