langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/ModulePackageIndexFrameWriter.java
author jjg
Mon, 22 Aug 2016 16:32:40 -0700
changeset 40587 1c355ea550ed
parent 40303 96a1226aca18
child 45157 f5f796453339
permissions -rw-r--r--
8164130: Simplify doclet IOException handling Reviewed-by: bpatel, ksrini
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     2
 * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
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
     */
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
    67
    public ModulePackageIndexFrameWriter(ConfigurationImpl 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
     */
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
    77
    public static void generate(ConfigurationImpl configuration, ModuleElement mdle) throws DocFileIOException {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    78
        DocPath filename = 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,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    87
            String tableSummary, Content body, ModuleElement mdle) {
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);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    93
        HtmlTree htmlTree = (configuration.allowTag(HtmlTag.MAIN))
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    94
                ? HtmlTree.MAIN(HtmlStyle.indexContainer, heading)
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    95
                : HtmlTree.DIV(HtmlStyle.indexContainer, heading);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    96
        HtmlTree ul = new HtmlTree(HtmlTag.UL);
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
    97
        ul.setTitle(contents.packagesLabel);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    98
        List<PackageElement> packages = new ArrayList<>(modules.get(mdle));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    99
        for (PackageElement pkg : packages) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   100
            if ((!(configuration.nodeprecated && utils.isDeprecated(pkg)))) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   101
                ul.addContent(getPackage(pkg, mdle));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   102
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   103
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   104
        htmlTree.addContent(ul);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   105
        body.addContent(htmlTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   106
    }
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
     * {@inheritDoc}
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   110
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   111
    protected void addModulePackagesList(Set<ModuleElement> modules, String text,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   112
            String tableSummary, Content body, ModuleElement mdle) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   113
        Content moduleNameContent = new StringContent(mdle.getQualifiedName().toString());
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   114
        Content heading = HtmlTree.HEADING(HtmlConstants.PACKAGE_HEADING, true,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   115
                getTargetModuleLink("classFrame", moduleNameContent, mdle));
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   116
        heading.addContent(Contents.SPACE);
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   117
        heading.addContent(contents.packagesLabel);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   118
        HtmlTree htmlTree = (configuration.allowTag(HtmlTag.MAIN))
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   119
                ? HtmlTree.MAIN(HtmlStyle.indexContainer, heading)
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   120
                : HtmlTree.DIV(HtmlStyle.indexContainer, heading);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   121
        HtmlTree ul = new HtmlTree(HtmlTag.UL);
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   122
        ul.setTitle(contents.packagesLabel);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   123
        Set<PackageElement> modulePackages = configuration.modulePackages.get(mdle);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   124
        for (PackageElement pkg: modulePackages) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   125
            if ((!(configuration.nodeprecated && utils.isDeprecated(pkg)))) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   126
                ul.addContent(getPackage(pkg, mdle));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   127
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   128
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   129
        htmlTree.addContent(ul);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   130
        body.addContent(htmlTree);
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
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   134
     * Returns each package name as a separate link.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   135
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   136
     * @param pkg PackageElement
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   137
     * @param mdle the module being documented
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   138
     * @return content for the package link
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   139
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   140
    protected Content getPackage(PackageElement pkg, ModuleElement mdle) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   141
        Content packageLinkContent;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   142
        Content pkgLabel;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   143
        if (!pkg.isUnnamed()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   144
            pkgLabel = getPackageLabel(utils.getPackageName(pkg));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   145
            packageLinkContent = getHyperLink(pathString(pkg,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   146
                     DocPaths.PACKAGE_FRAME), pkgLabel, "",
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   147
                    "packageFrame");
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   148
        } else {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   149
            pkgLabel = new StringContent("<unnamed package>");
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   150
            packageLinkContent = getHyperLink(DocPaths.PACKAGE_FRAME,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   151
                    pkgLabel, "", "packageFrame");
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   152
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   153
        Content li = HtmlTree.LI(packageLinkContent);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   154
        return li;
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
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   158
     * {@inheritDoc}
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   159
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   160
    protected void addNavigationBarHeader(Content body) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   161
        Content headerContent;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   162
        if (configuration.packagesheader.length() > 0) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   163
            headerContent = new RawHtml(replaceDocRootDir(configuration.packagesheader));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   164
        } else {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   165
            headerContent = new RawHtml(replaceDocRootDir(configuration.header));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   166
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   167
        Content heading = HtmlTree.HEADING(HtmlConstants.TITLE_HEADING, true,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   168
                HtmlStyle.bar, headerContent);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   169
        body.addContent(heading);
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
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   173
     * Do nothing as there is no overview information in this page.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   174
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   175
    protected void addOverviewHeader(Content body) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   176
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   177
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   178
    protected void addModulesList(Map<ModuleElement, Set<PackageElement>> modules, String text,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   179
            String tableSummary, Content body) {
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) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   189
        Content linkContent = getHyperLink(DocPaths.ALLCLASSES_FRAME,
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   190
                contents.allClassesLabel, "", "packageFrame");
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   191
        Content li = HtmlTree.LI(linkContent);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   192
        ul.addContent(li);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   193
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   194
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   195
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   196
     * Adds "All Packages" link for the top of the left-hand frame page to the
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   197
     * documentation tree.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   198
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   199
     * @param ul the Content object to which the all packages link should be added
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   200
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   201
    protected void addAllPackagesLink(Content ul) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   202
        Content linkContent = getHyperLink(DocPaths.OVERVIEW_FRAME,
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   203
                contents.allPackagesLabel, "", "packageListFrame");
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   204
        Content li = HtmlTree.LI(linkContent);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   205
        ul.addContent(li);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   206
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   207
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   208
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   209
     * Adds "All Modules" link for the top of the left-hand frame page to the
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   210
     * documentation tree.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   211
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   212
     * @param ul the Content object to which the all modules link should be added
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   213
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   214
    protected void addAllModulesLink(Content ul) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   215
        Content linkContent = getHyperLink(DocPaths.MODULE_OVERVIEW_FRAME,
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   216
                contents.allModulesLabel, "", "packageListFrame");
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   217
        Content li = HtmlTree.LI(linkContent);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   218
        ul.addContent(li);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   219
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   220
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   221
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   222
     * {@inheritDoc}
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   223
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   224
    protected void addNavigationBarFooter(Content body) {
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 36526
diff changeset
   225
        Content p = HtmlTree.P(Contents.SPACE);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   226
        body.addContent(p);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   227
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   228
}