src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/ModulePackageIndexFrameWriter.java
author pmuthuswamy
Wed, 19 Sep 2018 12:14:53 +0530
changeset 51797 3efead10e303
parent 49569 d4d2f634b72f
child 53562 0d9dee001667
permissions -rw-r--r--
8210047: some pages contain content outside of landmark region Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
48654
36f58bd6269f 8195796: Reduce the size of relative URLs in generated docs
jjg
parents: 47850
diff changeset
     2
 * Copyright (c) 2013, 2018, 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
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    36
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlConstants;
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);
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
    80
        modpackgen.buildModulePackagesIndexFile("doclet.Window_Overview", false, mdle);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    81
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    82
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    83
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    84
     * {@inheritDoc}
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    85
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    86
    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
    87
            String tableSummary, Content main, ModuleElement mdle) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    88
        Content profNameContent = new StringContent(mdle.getQualifiedName().toString());
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    89
        Content heading = HtmlTree.HEADING(HtmlConstants.PACKAGE_HEADING, true,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    90
                getTargetModuleLink("classFrame", profNameContent, mdle));
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
    91
        heading.addContent(Contents.SPACE);
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
    92
        heading.addContent(contents.packagesLabel);
51797
3efead10e303 8210047: some pages contain content outside of landmark region
pmuthuswamy
parents: 49569
diff changeset
    93
        HtmlTree htmlTree = HtmlTree.DIV(HtmlStyle.indexContainer, heading);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    94
        HtmlTree ul = new HtmlTree(HtmlTag.UL);
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
    95
        ul.setTitle(contents.packagesLabel);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    96
        List<PackageElement> packages = new ArrayList<>(modules.get(mdle));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    97
        for (PackageElement pkg : packages) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    98
            if ((!(configuration.nodeprecated && utils.isDeprecated(pkg)))) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    99
                ul.addContent(getPackage(pkg, mdle));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   100
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   101
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   102
        htmlTree.addContent(ul);
51797
3efead10e303 8210047: some pages contain content outside of landmark region
pmuthuswamy
parents: 49569
diff changeset
   103
        main.addContent(htmlTree);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   104
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   105
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   106
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   107
     * {@inheritDoc}
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   108
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   109
    protected void addModulePackagesList(Set<ModuleElement> modules, String text,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   110
            String tableSummary, Content body, ModuleElement mdle) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   111
        Content moduleNameContent = new StringContent(mdle.getQualifiedName().toString());
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   112
        Content heading = HtmlTree.HEADING(HtmlConstants.PACKAGE_HEADING, true,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   113
                getTargetModuleLink("classFrame", moduleNameContent, mdle));
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   114
        heading.addContent(Contents.SPACE);
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   115
        heading.addContent(contents.packagesLabel);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   116
        HtmlTree htmlTree = (configuration.allowTag(HtmlTag.MAIN))
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   117
                ? HtmlTree.MAIN(HtmlStyle.indexContainer, heading)
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   118
                : HtmlTree.DIV(HtmlStyle.indexContainer, heading);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   119
        HtmlTree ul = new HtmlTree(HtmlTag.UL);
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   120
        ul.setTitle(contents.packagesLabel);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   121
        Set<PackageElement> modulePackages = configuration.modulePackages.get(mdle);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   122
        for (PackageElement pkg: modulePackages) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   123
            if ((!(configuration.nodeprecated && utils.isDeprecated(pkg)))) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   124
                ul.addContent(getPackage(pkg, mdle));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   125
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   126
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   127
        htmlTree.addContent(ul);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   128
        body.addContent(htmlTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   129
    }
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
     * Returns each package name as a separate link.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   133
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   134
     * @param pkg PackageElement
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   135
     * @param mdle the module being documented
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   136
     * @return content for the package link
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   137
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   138
    protected Content getPackage(PackageElement pkg, ModuleElement mdle) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   139
        Content packageLinkContent;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   140
        Content pkgLabel;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   141
        if (!pkg.isUnnamed()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   142
            pkgLabel = getPackageLabel(utils.getPackageName(pkg));
48654
36f58bd6269f 8195796: Reduce the size of relative URLs in generated docs
jjg
parents: 47850
diff changeset
   143
            packageLinkContent = links.createLink(pathString(pkg,
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   144
                     DocPaths.PACKAGE_FRAME), pkgLabel, "",
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   145
                    "packageFrame");
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   146
        } else {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   147
            pkgLabel = new StringContent("<unnamed package>");
48654
36f58bd6269f 8195796: Reduce the size of relative URLs in generated docs
jjg
parents: 47850
diff changeset
   148
            packageLinkContent = links.createLink(DocPaths.PACKAGE_FRAME,
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   149
                    pkgLabel, "", "packageFrame");
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   150
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   151
        Content li = HtmlTree.LI(packageLinkContent);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   152
        return li;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   153
    }
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
     * {@inheritDoc}
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   157
     */
51797
3efead10e303 8210047: some pages contain content outside of landmark region
pmuthuswamy
parents: 49569
diff changeset
   158
    protected void addNavigationBarHeader(Content header) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   159
        Content headerContent;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   160
        if (configuration.packagesheader.length() > 0) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   161
            headerContent = new RawHtml(replaceDocRootDir(configuration.packagesheader));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   162
        } else {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   163
            headerContent = new RawHtml(replaceDocRootDir(configuration.header));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   164
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   165
        Content heading = HtmlTree.HEADING(HtmlConstants.TITLE_HEADING, true,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   166
                HtmlStyle.bar, headerContent);
51797
3efead10e303 8210047: some pages contain content outside of landmark region
pmuthuswamy
parents: 49569
diff changeset
   167
        header.addContent(heading);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   168
    }
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
     * Do nothing as there is no overview information in this page.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   172
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   173
    protected void addOverviewHeader(Content body) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   174
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   175
47447
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47216
diff changeset
   176
    /**
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47216
diff changeset
   177
     * 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
   178
     */
9887d1bc3e9c 8183037: Overview summary page should have a table with tabs for groups
bpatel
parents: 47216
diff changeset
   179
    protected void addModulesList(Content body) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   180
    }
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
     * Adds "All Classes" link for the top of the left-hand frame page to the
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   184
     * documentation tree.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   185
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   186
     * @param ul the Content object to which the all classes link should be added
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   187
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   188
    protected void addAllClassesLink(Content ul) {
49569
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   189
        DocPath allClassesFrame = configuration.useModuleDirectories
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   190
                ? DocPaths.DOT_DOT.resolve(DocPaths.ALLCLASSES_FRAME)
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   191
                : DocPaths.ALLCLASSES_FRAME;
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   192
        Content linkContent = links.createLink(allClassesFrame,
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   193
                contents.allClassesLabel, "", "packageFrame");
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   194
        Content li = HtmlTree.LI(linkContent);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   195
        ul.addContent(li);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   196
    }
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
     * Adds "All Packages" link for the top of the left-hand frame page to the
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   200
     * documentation tree.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   201
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   202
     * @param ul the Content object to which the all packages link should be added
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   203
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   204
    protected void addAllPackagesLink(Content ul) {
49569
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   205
        DocPath overviewFrame = configuration.useModuleDirectories
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   206
                ? DocPaths.DOT_DOT.resolve(DocPaths.OVERVIEW_FRAME)
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   207
                : DocPaths.OVERVIEW_FRAME;
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   208
        Content linkContent = links.createLink(overviewFrame,
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   209
                contents.allPackagesLabel, "", "packageListFrame");
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   210
        Content li = HtmlTree.LI(linkContent);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   211
        ul.addContent(li);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   212
    }
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
     * Adds "All Modules" link for the top of the left-hand frame page to the
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   216
     * documentation tree.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   217
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   218
     * @param ul the Content object to which the all modules link should be added
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   219
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   220
    protected void addAllModulesLink(Content ul) {
49569
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   221
        DocPath moduleOverviewFrame = configuration.useModuleDirectories
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   222
                ? DocPaths.DOT_DOT.resolve(DocPaths.MODULE_OVERVIEW_FRAME)
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   223
                : DocPaths.MODULE_OVERVIEW_FRAME;
d4d2f634b72f 8201396: fix broken links generated by javadoc doclet
jjg
parents: 48759
diff changeset
   224
        Content linkContent = links.createLink(moduleOverviewFrame,
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   225
                contents.allModulesLabel, "", "packageListFrame");
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   226
        Content li = HtmlTree.LI(linkContent);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   227
        ul.addContent(li);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   228
    }
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
     * {@inheritDoc}
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   232
     */
51797
3efead10e303 8210047: some pages contain content outside of landmark region
pmuthuswamy
parents: 49569
diff changeset
   233
    protected void addNavigationBarFooter(Content footer) {
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   234
        Content p = HtmlTree.P(Contents.SPACE);
51797
3efead10e303 8210047: some pages contain content outside of landmark region
pmuthuswamy
parents: 49569
diff changeset
   235
        footer.addContent(p);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   236
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   237
}