/**
  * Add inherited member summary for the given class and member.
  *
  * @param classDoc the class the inherited member belongs to
  * @param nestedClass the inherited member that is summarized
  * @param isFirst true if this is the first member in the list
  * @param isLast true if this is the last member in the list
  * @param linksTree the content tree to which the summary will be added
  */
 public void addInheritedMemberSummary(
     ClassDoc classDoc,
     ProgramElementDoc nestedClass,
     boolean isFirst,
     boolean isLast,
     Content linksTree) {
   writer.addInheritedMemberSummary(this, classDoc, nestedClass, isFirst, linksTree);
 }