langtools/src/share/classes/com/sun/tools/doclets/formats/html/PackageIndexFrameWriter.java
changeset 1787 1aa079321cd2
parent 10 06bc494ca11e
child 2320 5b8c377175f4
equal deleted inserted replaced
1753:d4c11dcedac3 1787:1aa079321cd2
    85         fontEnd();
    85         fontEnd();
    86         br();
    86         br();
    87     }
    87     }
    88 
    88 
    89     /**
    89     /**
    90      * Print the "-packagesheader" string in bold format, at top of the page,
    90      * Print the "-packagesheader" string in strong format, at top of the page,
    91      * if it is not the empty string.  Otherwise print the "-header" string.
    91      * if it is not the empty string.  Otherwise print the "-header" string.
    92      * Despite the name, there is actually no navigation bar for this page.
    92      * Despite the name, there is actually no navigation bar for this page.
    93      */
    93      */
    94     protected void printNavigationBarHeader() {
    94     protected void printNavigationBarHeader() {
    95         printTableHeader(true);
    95         printTableHeader(true);
    96         fontSizeStyle("+1", "FrameTitleFont");
    96         fontSizeStyle("+1", "FrameTitleFont");
    97         if (configuration.packagesheader.length() > 0) {
    97         if (configuration.packagesheader.length() > 0) {
    98             bold(replaceDocRootDir(configuration.packagesheader));
    98             strong(replaceDocRootDir(configuration.packagesheader));
    99         } else {
    99         } else {
   100             bold(replaceDocRootDir(configuration.header));
   100             strong(replaceDocRootDir(configuration.header));
   101         }
   101         }
   102         fontEnd();
   102         fontEnd();
   103         printTableFooter(true);
   103         printTableFooter(true);
   104     }
   104     }
   105 
   105