Example #1
0
  /**
   * Generate the contents of each index file, with Header, Footer, Member Field, Method and
   * Constructor Description.
   *
   * @param unicode Unicode character referring to the character for the index.
   */
  protected void generateIndexFile(Character unicode) throws IOException {
    printHtmlHeader(
        configuration.getText("doclet.Window_Split_Index", unicode.toString()), null, true);
    printTop();
    navLinks(true);
    printLinksForIndexes();

    hr();

    generateContents(unicode, indexbuilder.getMemberList(unicode));

    navLinks(false);
    printLinksForIndexes();

    printBottom();
    printBodyHtmlEnd();
  }