< prev index next >

src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/ModuleFrameWriter.java

Print this page

        

*** 74,84 **** * * @param configuration the configuration of the doclet. * @param moduleElement moduleElement under consideration. */ public ModuleFrameWriter(HtmlConfiguration configuration, ModuleElement moduleElement) { ! super(configuration, DocPaths.moduleTypeFrame(moduleElement)); this.mdle = moduleElement; if (configuration.getSpecifiedPackageElements().isEmpty()) { documentedClasses = new TreeSet<>(utils.makeGeneralPurposeComparator()); documentedClasses.addAll(configuration.getIncludedTypeElements()); } --- 74,84 ---- * * @param configuration the configuration of the doclet. * @param moduleElement moduleElement under consideration. */ public ModuleFrameWriter(HtmlConfiguration configuration, ModuleElement moduleElement) { ! super(configuration, configuration.docPaths.moduleTypeFrame(moduleElement)); this.mdle = moduleElement; if (configuration.getSpecifiedPackageElements().isEmpty()) { documentedClasses = new TreeSet<>(utils.makeGeneralPurposeComparator()); documentedClasses.addAll(configuration.getIncludedTypeElements()); }
*** 99,109 **** HtmlTree body = mdlgen.getBody(false, mdlgen.getWindowTitle(mdlName)); HtmlTree htmlTree = (configuration.allowTag(HtmlTag.MAIN)) ? HtmlTree.MAIN() : body; Content heading = HtmlTree.HEADING(HtmlConstants.TITLE_HEADING, HtmlStyle.bar, ! mdlgen.links.createLink(DocPaths.moduleSummary(moduleElement), mdlLabel, "", "classFrame")); htmlTree.addContent(heading); HtmlTree div = new HtmlTree(HtmlTag.DIV); div.setStyle(HtmlStyle.indexContainer); mdlgen.addClassListing(div); htmlTree.addContent(div); --- 99,109 ---- HtmlTree body = mdlgen.getBody(false, mdlgen.getWindowTitle(mdlName)); HtmlTree htmlTree = (configuration.allowTag(HtmlTag.MAIN)) ? HtmlTree.MAIN() : body; Content heading = HtmlTree.HEADING(HtmlConstants.TITLE_HEADING, HtmlStyle.bar, ! mdlgen.links.createLink(configuration.docPaths.moduleSummary(moduleElement), mdlLabel, "", "classFrame")); htmlTree.addContent(heading); HtmlTree div = new HtmlTree(HtmlTag.DIV); div.setStyle(HtmlStyle.indexContainer); mdlgen.addClassListing(div); htmlTree.addContent(div);
< prev index next >