langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/PackageIndexWriter.java
changeset 45417 f7479ee8de69
parent 45157 f5f796453339
equal deleted inserted replaced
45416:0d8bb33bdfa7 45417:f7479ee8de69
    81      *
    81      *
    82      * @param configuration the configuration for this doclet
    82      * @param configuration the configuration for this doclet
    83      * @param filename the path of the page to be generated
    83      * @param filename the path of the page to be generated
    84      * @see Group
    84      * @see Group
    85      */
    85      */
    86     public PackageIndexWriter(ConfigurationImpl configuration, DocPath filename) {
    86     public PackageIndexWriter(HtmlConfiguration configuration, DocPath filename) {
    87         super(configuration, filename);
    87         super(configuration, filename);
    88         groupPackageMap = configuration.group.groupPackages(packages);
    88         groupPackageMap = configuration.group.groupPackages(packages);
    89         groupList = configuration.group.getGroupList();
    89         groupList = configuration.group.getGroupList();
    90     }
    90     }
    91 
    91 
    93      * Generate the package index page for the right-hand frame.
    93      * Generate the package index page for the right-hand frame.
    94      *
    94      *
    95      * @param configuration the current configuration of the doclet.
    95      * @param configuration the current configuration of the doclet.
    96      * @throws DocFileIOException if there is a problem generating the package index page
    96      * @throws DocFileIOException if there is a problem generating the package index page
    97      */
    97      */
    98     public static void generate(ConfigurationImpl configuration) throws DocFileIOException {
    98     public static void generate(HtmlConfiguration configuration) throws DocFileIOException {
    99         DocPath filename = DocPaths.overviewSummary(configuration.frames);
    99         DocPath filename = DocPaths.overviewSummary(configuration.frames);
   100         PackageIndexWriter packgen = new PackageIndexWriter(configuration, filename);
   100         PackageIndexWriter packgen = new PackageIndexWriter(configuration, filename);
   101         packgen.buildPackageIndexFile("doclet.Window_Overview_Summary", true);
   101         packgen.buildPackageIndexFile("doclet.Window_Overview_Summary", true);
   102     }
   102     }
   103 
   103