// If the open tag had its id changed
if (openTag.getNameChanged())
{
// change the id of the close tag
closeTag = closeTag.mutable();
closeTag.setName(openTag.getName());
closeTag.setNamespace(openTag.getNamespace());
}
renderComponentTag(closeTag);