/**
  * Build the annotation information tree documentation.
  *
  * @param node the XML element that specifies which components to document
  * @param annotationContentTree the content tree to which the documentation will be added
  */
 public void buildAnnotationTypeInfo(XMLNode node, Content annotationContentTree) {
   Content annotationInfoTree = writer.getAnnotationInfoTreeHeader();
   buildChildren(node, annotationInfoTree);
   annotationContentTree.addContent(writer.getAnnotationInfo(annotationInfoTree));
 }