langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/ModulePackageIndexFrameWriter.java
changeset 45417 f7479ee8de69
parent 45157 f5f796453339
equal deleted inserted replaced
45416:0d8bb33bdfa7 45417:f7479ee8de69
    63      * Construct the ModulePackageIndexFrameWriter object.
    63      * Construct the ModulePackageIndexFrameWriter object.
    64      *
    64      *
    65      * @param configuration the configuration object
    65      * @param configuration the configuration object
    66      * @param filename Name of the package index file to be generated.
    66      * @param filename Name of the package index file to be generated.
    67      */
    67      */
    68     public ModulePackageIndexFrameWriter(ConfigurationImpl configuration, DocPath filename)  {
    68     public ModulePackageIndexFrameWriter(HtmlConfiguration configuration, DocPath filename)  {
    69         super(configuration, filename);
    69         super(configuration, filename);
    70     }
    70     }
    71 
    71 
    72     /**
    72     /**
    73      * Generate the module package index file.
    73      * Generate the module package index file.
    74      * @throws DocFileIOException
    74      * @throws DocFileIOException
    75      * @param configuration the configuration object
    75      * @param configuration the configuration object
    76      * @param mdle the module being documented
    76      * @param mdle the module being documented
    77      */
    77      */
    78     public static void generate(ConfigurationImpl configuration, ModuleElement mdle) throws DocFileIOException {
    78     public static void generate(HtmlConfiguration configuration, ModuleElement mdle) throws DocFileIOException {
    79         DocPath filename = DocPaths.moduleFrame(mdle);
    79         DocPath filename = DocPaths.moduleFrame(mdle);
    80         ModulePackageIndexFrameWriter modpackgen = new ModulePackageIndexFrameWriter(configuration, filename);
    80         ModulePackageIndexFrameWriter modpackgen = new ModulePackageIndexFrameWriter(configuration, filename);
    81         modpackgen.buildModulePackagesIndexFile("doclet.Window_Overview", false, mdle);
    81         modpackgen.buildModulePackagesIndexFile("doclet.Window_Overview", false, mdle);
    82     }
    82     }
    83 
    83