langtools/src/share/classes/com/sun/tools/doclets/formats/html/AbstractTreeWriter.java
changeset 1787 1aa079321cd2
parent 10 06bc494ca11e
child 1789 7ac8c0815000
equal deleted inserted replaced
1753:d4c11dcedac3 1787:1aa079321cd2
   171      *
   171      *
   172      * @param cd classdoc.
   172      * @param cd classdoc.
   173      */
   173      */
   174     protected void printPartialInfo(ClassDoc cd) {
   174     protected void printPartialInfo(ClassDoc cd) {
   175         li("circle");
   175         li("circle");
   176         printPreQualifiedBoldClassLink(LinkInfoImpl.CONTEXT_TREE, cd);
   176         printPreQualifiedStrongClassLink(LinkInfoImpl.CONTEXT_TREE, cd);
   177     }
   177     }
   178 
   178 
   179     /**
   179     /**
   180      * Print the heading for the tree.
   180      * Print the heading for the tree.
   181      *
   181      *
   191      * Highlight "Tree" word in the navigation bar, since this is the tree page.
   191      * Highlight "Tree" word in the navigation bar, since this is the tree page.
   192      */
   192      */
   193     protected void navLinkTree() {
   193     protected void navLinkTree() {
   194         navCellRevStart();
   194         navCellRevStart();
   195         fontStyle("NavBarFont1Rev");
   195         fontStyle("NavBarFont1Rev");
   196         boldText("doclet.Tree");
   196         strongText("doclet.Tree");
   197         fontEnd();
   197         fontEnd();
   198         navCellEnd();
   198         navCellEnd();
   199     }
   199     }
   200 }
   200 }