/**
* @return the concatenation of the String representations {@link #toString()} of its children.
*/
public final String getChildMarkup()
{
PrintOutCollector collector = new PrintOutCollector();
writeChildMarkup(collector.getPrintWriter());
return collector.getPrintOut();
}