* @return A string with the HTML code for the contents of this tag.
*/
public String getChildrenHTML() {
StringBuffer buff = new StringBuffer();
for (SimpleNodeIterator e = children();e.hasMoreNodes();) {
AbstractNode node = (AbstractNode)e.nextNode();
buff.append(node.toHtml());
}
return buff.toString();
}