ParagraphAttributes attributes) {
if (insideAnchorBody) {
return;
}
WapTV5_WMLVersion1_3Style style = (WapTV5_WMLVersion1_3Style)
getStyle(attributes);
dom.addStyledElement("br", attributes);
// @todo 2005060816 annotate child with style information if it's not inherited from the parent
Element element = dom.openStyledElement("table", attributes,
DisplayKeywords.TABLE);
// Apply stylistic information to table.
if (style != null) {
style.addTextAlign(element, "align");
}
dom.openElement("tr");
element = dom.openElement("td");
addTitleAttribute(element, attributes, true);
// Apply stylistic information to table cell.
if (style != null) {
style.addMarinerLineGap(element, "linegap");
}
WapTV5_WMLVersion1_3Style bodyStyle =
(WapTV5_WMLVersion1_3Style) getStyle(attributes);
if (bodyStyle != null) {
bodyStyle.addVspace(element, "vspace");
}
openFont(dom, attributes, false);
}