* @throws GalleyVisitorException For errors during rendering.
*/
public void renderChildren(final AreaNode area) throws GalleyVisitorException {
for (int i = 0; i < area.getChildCount(); i++) {
final AreaNode child = area.getChildAt(i);
child.render(this);
}
}
/**
* {@inheritDoc}