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