src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/ModulePackageIndexFrameWriter.java
author jjg
Thu, 21 Feb 2019 17:50:27 -0800
changeset 53883 f41793b5b83f
parent 53879 e7cb0348fa1c
child 53991 786825220790
permissions -rw-r--r--
8219558: jdk/javadoc tests fail with missing headings: h1 Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
53863
d001808c57e8 8218998: Add metadata to generated API documentation files
jjg
parents: 53562
diff changeset
     2
 * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     4
 *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    10
 *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    15
 * accompanied this code).
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    16
 *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    20
 *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    23
 * questions.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    24
 */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    25
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    26
package jdk.javadoc.internal.doclets.formats.html;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    27
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    28
import java.util.ArrayList;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    29
import java.util.List;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    30
import java.util.Map;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    31
import java.util.Set;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    32
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    33
import javax.lang.model.element.ModuleElement;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    34
import javax.lang.model.element.PackageElement;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    35
53883
f41793b5b83f 8219558: jdk/javadoc tests fail with missing headings: h1
jjg
parents: 53879
diff changeset
    36
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlConstants;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    37
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlStyle;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    38
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlTag;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    39
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlTree;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    40
import jdk.javadoc.internal.doclets.formats.html.markup.RawHtml;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    41
import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    42
import jdk.javadoc.internal.doclets.toolkit.Content;
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
    43
import jdk.javadoc.internal.doclets.toolkit.util.DocFileIOException;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    44
import jdk.javadoc.internal.doclets.toolkit.util.DocPath;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    45
import jdk.javadoc.internal.doclets.toolkit.util.DocPaths;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    46
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    47
/**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    48
 * Generate the module package index for the left-hand frame in the generated output.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    49
 * A click on the package name in this frame will update the page in the bottom
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    50
 * left hand frame with the listing of contents of the clicked module package.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    51
 *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    52
 *  <p><b>This is NOT part of any supported API.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    53
 *  If you write code that depends on this, you do so at your own risk.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    54
 *  This code and its internal interfaces are subject to change or
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    55
 *  deletion without notice.</b>
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    56
 *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    57
 * @author Bhavesh Patel
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    58
 */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    59
public class ModulePackageIndexFrameWriter extends AbstractModuleIndexWriter {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    60
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    61
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    62
     * Construct the ModulePackageIndexFrameWriter object.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    63
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    64
     * @param configuration the configuration object
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    65
     * @param filename Name of the package index file to be generated.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    66
     */
45417
f7479ee8de69 8177848: Rename Configuration(Impl) classes
ksrini
parents: 45157
diff changeset
    67
    public ModulePackageIndexFrameWriter(HtmlConfiguration configuration, DocPath filename)  {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    68
        super(configuration, filename);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    69
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    70
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    71
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    72
     * Generate the module package index file.
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
    73
     * @throws DocFileIOException
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    74
     * @param configuration the configuration object
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    75
     * @param mdle the module being documented
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    76
     */
45417
f7479ee8de69 8177848: Rename Configuration(Impl) classes
ksrini
parents: 45157
diff changeset
    77
    public static void generate(HtmlConfiguration configuration, ModuleElement mdle) throws DocFileIOException {
48759
ffa68af7da87 8195795: Organize output files by module/package, not just package
jjg
parents: 48654
diff changeset
    78
        DocPath filename = configuration.docPaths.moduleFrame(mdle);
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
    79
        ModulePackageIndexFrameWriter modpackgen = new ModulePackageIndexFrameWriter(configuration, filename);
53863
d001808c57e8 8218998: Add metadata to generated API documentation files
jjg
parents: 53562
diff changeset
    80
        modpackgen.buildModulePackagesIndexFile("doclet.Window_Overview",
d001808c57e8 8218998: Add metadata to generated API documentation files
jjg
parents: 53562
diff changeset
    81
                getDescription("module package index", mdle) + " (frame)",
d001808c57e8 8218998: Add metadata to generated API documentation files
jjg
parents: 53562
diff changeset
    82
                false,
d001808c57e8 8218998: Add metadata to generated API documentation files
jjg
parents: 53562
diff changeset
    83
                mdle);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    84
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    85
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    86
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    87
     * {@inheritDoc}
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    88
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    89
    protected void addModulePackagesList(Map<ModuleElement, Set<PackageElement>> modules, String text,
51797
3efead10e303 8210047: some pages contain content outside of landmark region
pmuthuswamy
parents: 49569
diff changeset
    90
            String tableSummary, Content main, ModuleElement mdle) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    91
        Content profNameContent = new StringContent(mdle.getQualifiedName().toString());
53883
f41793b5b83f 8219558: jdk/javadoc tests fail with missing headings: h1
jjg
parents: 53879
diff changeset
    92
        Content heading = HtmlTree.HEADING(HtmlConstants.PACKAGE_HEADING, true,
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    93
                getTargetModuleLink("classFrame", profNameContent, mdle));
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
    94
        heading.addContent(Contents.SPACE);
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
    95
        heading.addContent(contents.packagesLabel);
51797
3efead10e303 8210047: some pages contain content outside of landmark region
pmuthuswamy
parents: 49569
diff changeset
    96
        HtmlTree htmlTree = HtmlTree.DIV(HtmlStyle.indexContainer, heading);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    97
        HtmlTree ul = new HtmlTree(HtmlTag.UL);
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
    98
        ul.setTitle(contents.packagesLabel);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    99
        List<PackageElement> packages = new ArrayList<>(modules.get(mdle));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   100
        for (PackageElement pkg : packages) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   101
            if ((!(configuration.nodeprecated && utils.isDeprecated(pkg)))) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   102
                ul.addContent(getPackage(pkg, mdle));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   103
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   104
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   105
        htmlTree.addContent(ul);
51797
3efead10e303 8210047: some pages contain content outside of landmark region
pmuthuswamy
parents: 49569
diff changeset
   106
        main.addContent(htmlTree);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   107
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   108
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   109
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   110
     * {@inheritDoc}
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   111
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   112
    protected void addModulePackagesList(Set<ModuleElement> modules, String text,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   113
            String tableSummary, Content body, ModuleElement mdle) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   114
        Content moduleNameContent = new StringContent(mdle.getQualifiedName().toString());
53883
f41793b5b83f 8219558: jdk/javadoc tests fail with missing headings: h1
jjg
parents: 53879
diff changeset
   115
        Content heading = HtmlTree.HEADING(HtmlConstants.PACKAGE_HEADING, true,
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   116
                getTargetModuleLink("classFrame", moduleNameContent, mdle));
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   117
        heading.addContent(Contents.SPACE);
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   118
        heading.addContent(contents.packagesLabel);
53562
0d9dee001667 8215577: Remove javadoc support for HTML 4
pmuthuswamy
parents: 51797
diff changeset
   119
        HtmlTree htmlTree = HtmlTree.MAIN(HtmlStyle.indexContainer, heading);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   120
        HtmlTree ul = new HtmlTree(HtmlTag.UL);
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   121
        ul.setTitle(contents.packagesLabel);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   122
        Set<PackageElement> modulePackages = configuration.modulePackages.get(mdle);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   123
        for (PackageElement pkg: modulePackages) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   124
            if ((!(configuration.nodeprecated && utils.isDeprecated(pkg)))) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   125
                ul.addContent(getPackage(pkg, mdle));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   126
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   127
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   128
        htmlTree.addContent(ul);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   129
        body.addContent(htmlTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   130
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   131
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   132
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   133
     * Returns each package name as a separate link.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   134
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   135
     * @param pkg PackageElement
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   136
     * @param mdle the module being documented
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   137
     * @return content for the package link
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   138
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   139
    protected Content getPackage(PackageElement pkg, ModuleElement mdle) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   140
        Content packageLinkContent;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   141
        Content pkgLabel;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   142
        if (!pkg.isUnnamed()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   143
            pkgLabel = getPackageLabel(utils.getPackageName(pkg));
48654
36f58bd6269f 8195796: Reduce the size of relative URLs in generated docs
jjg
parents: 47850
diff changeset
   144
            packageLinkContent = links.createLink(pathString(pkg,
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   145
                     DocPaths.PACKAGE_FRAME), pkgLabel, "",
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   146
                    "packageFrame");
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   147
        } else {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   148
            pkgLabel = new StringContent("<unnamed package>");
48654
36f58bd6269f 8195796: Reduce the size of relative URLs in generated docs
jjg
parents: 47850
diff changeset
   149
            packageLinkContent = links.createLink(DocPaths.PACKAGE_FRAME,
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   150
                    pkgLabel, "", "packageFrame");
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   151
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   152
        Content li = HtmlTree.LI(packageLinkContent);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   153
        return li;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   154
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   155
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   156
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   157
     * {@inheritDoc}
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   158
     */
51797
3efead10e303 8210047: some pages contain content outside of landmark region
pmuthuswamy
parents: 49569
diff changeset
   159
    protected void addNavigationBarHeader(Content header) {
53883
f41793b5b83f 8219558: jdk/javadoc tests fail with missing headings: h1
jjg
parents: 53879
diff changeset
   160
        Content headerContent;
f41793b5b83f 8219558: jdk/javadoc tests fail with missing headings: h1
jjg
parents: 53879
diff changeset
   161
        if (configuration.packagesheader.length() > 0) {
f41793b5b83f 8219558: jdk/javadoc tests fail with missing headings: h1
jjg
parents: 53879
diff changeset
   162
            headerContent = new RawHtml(replaceDocRootDir(configuration.packagesheader));
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   163
        } else {
53883
f41793b5b83f 8219558: jdk/javadoc tests fail with missing headings: h1
jjg
parents: 53879
diff changeset
   164
            headerContent = new RawHtml(replaceDocRootDir(configuration.header));
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   165
        }
53883
f41793b5b83f 8219558: jdk/javadoc tests fail with missing headings: h1
jjg
parents: 53879
diff changeset
   166
        Content heading = HtmlTree.HEADING(HtmlConstants.TITLE_HEADING, true,
f41793b5b83f 8219558: jdk/javadoc tests fail with missing headings: h1
jjg
parents: 53879
diff changeset
   167
                HtmlStyle.bar, headerContent);
f41793b5b83f 8219558: jdk/javadoc tests fail with missing headings: h1
jjg
parents: 53879
diff changeset
   168
        header.addContent(heading);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   169
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   170
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   171
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   172
     * Do nothing as there is no overview information in this page.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   173
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   174
    protected void addOverviewHeader(Content body) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   175
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   176
47447
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47216
diff changeset
   177
    /**
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47216
diff changeset
   178
     * Do nothing as there is no modules list on this page.
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47216
diff changeset
   179
     */
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47216
diff changeset
   180
    protected void addModulesList(Content body) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   181
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   182
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   183
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   184
     * Adds "All Classes" link for the top of the left-hand frame page to the
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   185
     * documentation tree.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   186
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   187
     * @param ul the Content object to which the all classes link should be added
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   188
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   189
    protected void addAllClassesLink(Content ul) {
49569
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   190
        DocPath allClassesFrame = configuration.useModuleDirectories
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   191
                ? DocPaths.DOT_DOT.resolve(DocPaths.ALLCLASSES_FRAME)
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   192
                : DocPaths.ALLCLASSES_FRAME;
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   193
        Content linkContent = links.createLink(allClassesFrame,
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   194
                contents.allClassesLabel, "", "packageFrame");
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   195
        Content li = HtmlTree.LI(linkContent);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   196
        ul.addContent(li);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   197
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   198
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   199
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   200
     * Adds "All Packages" link for the top of the left-hand frame page to the
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   201
     * documentation tree.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   202
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   203
     * @param ul the Content object to which the all packages link should be added
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   204
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   205
    protected void addAllPackagesLink(Content ul) {
49569
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   206
        DocPath overviewFrame = configuration.useModuleDirectories
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   207
                ? DocPaths.DOT_DOT.resolve(DocPaths.OVERVIEW_FRAME)
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   208
                : DocPaths.OVERVIEW_FRAME;
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   209
        Content linkContent = links.createLink(overviewFrame,
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   210
                contents.allPackagesLabel, "", "packageListFrame");
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   211
        Content li = HtmlTree.LI(linkContent);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   212
        ul.addContent(li);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   213
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   214
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   215
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   216
     * Adds "All Modules" link for the top of the left-hand frame page to the
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   217
     * documentation tree.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   218
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   219
     * @param ul the Content object to which the all modules link should be added
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   220
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   221
    protected void addAllModulesLink(Content ul) {
49569
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   222
        DocPath moduleOverviewFrame = configuration.useModuleDirectories
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   223
                ? DocPaths.DOT_DOT.resolve(DocPaths.MODULE_OVERVIEW_FRAME)
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   224
                : DocPaths.MODULE_OVERVIEW_FRAME;
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   225
        Content linkContent = links.createLink(moduleOverviewFrame,
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   226
                contents.allModulesLabel, "", "packageListFrame");
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   227
        Content li = HtmlTree.LI(linkContent);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   228
        ul.addContent(li);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   229
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   230
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   231
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   232
     * {@inheritDoc}
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   233
     */
51797
3efead10e303 8210047: some pages contain content outside of landmark region
pmuthuswamy
parents: 49569
diff changeset
   234
    protected void addNavigationBarFooter(Content footer) {
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   235
        Content p = HtmlTree.P(Contents.SPACE);
51797
3efead10e303 8210047: some pages contain content outside of landmark region
pmuthuswamy
parents: 49569
diff changeset
   236
        footer.addContent(p);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   237
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   238
}