public void printInheritedSummaryMember(
     AbstractMemberWriter mw, ClassDoc cd, ProgramElementDoc member, boolean isFirst) {
   if (!isFirst) {
     mw.print(", ");
   }
   mw.writeInheritedSummaryLink(cd, member);
 }
 public void printSummaryHeader(AbstractMemberWriter mw, ClassDoc cd) {
   mw.printSummaryAnchor(cd);
   tableIndexSummary();
   tableHeaderStart("#CCCCFF");
   mw.printSummaryLabel(cd);
   tableHeaderEnd();
 }
 public void printInheritedSummaryHeader(AbstractMemberWriter mw, ClassDoc cd) {
   mw.printInheritedSummaryAnchor(cd);
   tableIndexSummary();
   tableInheritedHeaderStart("#EEEEFF");
   mw.printInheritedSummaryLabel(cd);
   tableInheritedHeaderEnd();
   trBgcolorStyle("white", "TableRowColor");
   summaryRow(0);
   code();
 }
 public void printSummaryLinkType(AbstractMemberWriter mw, ProgramElementDoc member) {
   trBgcolorStyle("white", "TableRowColor");
   mw.printSummaryType(member);
   summaryRow(0);
   code();
 }