// Encode the starting element that represents the specified child's content.
responseWriter.startElement(itemTag, childDataItem);
RendererUtil.encodeStyleable(responseWriter, childDataItem);
// Encode the children of the specified child as the actual content.
childDataItem.encodeAll(facesContext);
// Encode the closing element for the specified child.
responseWriter.endElement(itemTag);
}
else {