/**
  * Export this tag to the given DocBlock.
  *
  * @param \DOMElement                                  $parent  Element to
  *     augment.
  * @param \phpDocumentor\Reflection\DocBlock\Tag       $tag     The tag to
  *     export.
  * @param \phpDocumentor\Reflection\BaseReflector $element Element to
  *     log from.
  *
  * @return void
  */
 public function export(\DOMElement $parent, $tag, $element)
 {
     $child = new \DOMElement('tag');
     $parent->appendChild($child);
     $child->setAttribute('line', $parent->getAttribute('line'));
     $element->dispatch('reflection.docblock.tag.export', array('object' => $tag, 'xml' => simplexml_import_dom($child)));
 }