src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/ModuleWriterImpl.java
author jjg
Wed, 13 Dec 2017 17:27:43 -0800
changeset 48325 e5cdedd37b78
parent 47850 4a28dc8a86c2
child 48437 dd3b97564ed7
permissions -rw-r--r--
8178070: duplicate entries in package table 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
/*
44293
2f47b2c16612 8176778: javadoc does not produce summary pages for aggregated modules
ksrini
parents: 42831
diff changeset
     2
 * Copyright (c) 2016, 2017, 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
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
    28
import jdk.javadoc.internal.doclets.formats.html.markup.Table;
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
    29
import jdk.javadoc.internal.doclets.formats.html.markup.TableHeader;
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
    30
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
    31
import java.util.ArrayList;
44293
2f47b2c16612 8176778: javadoc does not produce summary pages for aggregated modules
ksrini
parents: 42831
diff changeset
    32
import java.util.Collections;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    33
import java.util.List;
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
    34
import java.util.Map;
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    35
import java.util.Set;
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    36
import java.util.SortedSet;
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    37
import java.util.TreeMap;
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    38
import java.util.TreeSet;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    39
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    40
import javax.lang.model.element.Element;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    41
import javax.lang.model.element.ModuleElement;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    42
import javax.lang.model.element.PackageElement;
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
    43
import javax.lang.model.element.TypeElement;
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    44
import javax.lang.model.util.ElementFilter;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    45
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    46
import com.sun.source.doctree.DocTree;
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    47
import jdk.javadoc.doclet.DocletEnvironment.ModuleMode;
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
    48
import jdk.javadoc.internal.doclets.formats.html.markup.ContentBuilder;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    49
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlConstants;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    50
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlStyle;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    51
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlTag;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    52
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlTree;
47850
4a28dc8a86c2 8190821: Introduce a new Links builder class
jjg
parents: 47847
diff changeset
    53
import jdk.javadoc.internal.doclets.formats.html.markup.Links;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    54
import jdk.javadoc.internal.doclets.formats.html.markup.RawHtml;
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
    55
import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    56
import jdk.javadoc.internal.doclets.toolkit.Content;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    57
import jdk.javadoc.internal.doclets.toolkit.ModuleSummaryWriter;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    58
import jdk.javadoc.internal.doclets.toolkit.util.CommentHelper;
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
    59
import jdk.javadoc.internal.doclets.toolkit.util.DocFileIOException;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    60
import jdk.javadoc.internal.doclets.toolkit.util.DocPaths;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    61
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    62
/**
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    63
 * Class to generate file for each module contents in the right-hand frame. This will list all the
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    64
 * required modules, packages and service types for the module. A click on any of the links will update
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    65
 * the frame with the clicked element page.
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    66
 *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    67
 *  <p><b>This is NOT part of any supported API.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    68
 *  If you write code that depends on this, you do so at your own risk.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    69
 *  This code and its internal interfaces are subject to change or
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    70
 *  deletion without notice.</b>
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    71
 *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    72
 * @author Bhavesh Patel
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    73
 */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    74
public class ModuleWriterImpl extends HtmlDocletWriter implements ModuleSummaryWriter {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    75
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    76
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    77
     * The prev module name in the alpha-order list.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    78
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    79
    protected ModuleElement prevModule;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    80
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    81
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    82
     * The next module name in the alpha-order list.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    83
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    84
    protected ModuleElement nextModule;
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
     * The module being documented.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    88
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    89
    protected ModuleElement mdle;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    90
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    91
    /**
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    92
     * The module mode for this javadoc run. It can be set to "api" or "all".
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    93
     */
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    94
    private final ModuleMode moduleMode;
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    95
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    96
    /**
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    97
     * Map of module elements and modifiers required by this module.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    98
     */
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
    99
    private final Map<ModuleElement, Content> requires
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   100
            = new TreeMap<>(utils.makeModuleComparator());
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   101
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   102
    /**
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   103
     * Map of indirect modules and modifiers, transitive closure, required by this module.
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   104
     */
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   105
    private final Map<ModuleElement, Content> indirectModules
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   106
            = new TreeMap<>(utils.makeModuleComparator());
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   107
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   108
    /**
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   109
     * Details about a package in a module.
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   110
     * A package may be not exported, or exported to some modules, or exported to all modules.
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   111
     * A package may be not opened, or opened to some modules, or opened to all modules.
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   112
     * A package that is neither exported or opened to any modules is a concealed package.
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   113
     * An open module opens all its packages to all modules.
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   114
     */
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   115
    class PackageEntry {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   116
        /**
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   117
         * Summary of package exports:
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   118
         * If null, the package is not exported to any modules;
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   119
         * if empty, the package is exported to all modules;
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   120
         * otherwise, the package is exported to these modules.
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   121
         */
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   122
        Set<ModuleElement> exportedTo;
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   123
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   124
        /**
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   125
         * Summary of package opens:
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   126
         * If null, the package is not opened to any modules;
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   127
         * if empty, the package is opened to all modules;
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   128
         * otherwise, the package is opened to these modules.
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   129
         */
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   130
        Set<ModuleElement> openedTo;
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   131
    }
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   132
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   133
    /**
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   134
     * Map of packages of this module, and details of whether they are exported or opened.
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   135
     */
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   136
    private final Map<PackageElement, PackageEntry> packages = new TreeMap<>(utils.makePackageComparator());
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   137
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   138
    /**
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   139
     * Map of indirect modules (transitive closure) and their exported packages.
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   140
     */
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   141
    private final Map<ModuleElement, SortedSet<PackageElement>> indirectPackages
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   142
            = new TreeMap<>(utils.makeModuleComparator());
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   143
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   144
    /**
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   145
     * Map of indirect modules (transitive closure) and their open packages.
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   146
     */
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   147
    private final Map<ModuleElement, SortedSet<PackageElement>> indirectOpenPackages
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   148
            = new TreeMap<>(utils.makeModuleComparator());
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   149
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   150
    /**
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   151
     * Set of services used by the module.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   152
     */
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   153
    private final SortedSet<TypeElement> uses
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   154
            = new TreeSet<>(utils.makeAllClassesComparator());
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   155
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   156
    /**
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   157
     * Map of services used by the module and specified using @uses javadoc tag, and description.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   158
     */
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   159
    private final Map<TypeElement, Content> usesTrees
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   160
            = new TreeMap<>(utils.makeAllClassesComparator());
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   161
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   162
    /**
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   163
     * Map of services provided by this module, and set of its implementations.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   164
     */
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   165
    private final Map<TypeElement, SortedSet<TypeElement>> provides
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   166
            = new TreeMap<>(utils.makeAllClassesComparator());
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   167
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   168
    /**
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   169
     * Map of services provided by the module and specified using @provides javadoc tag, and
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   170
     * description.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   171
     */
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   172
    private final Map<TypeElement, Content> providesTrees
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   173
            = new TreeMap<>(utils.makeAllClassesComparator());
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   174
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   175
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   176
     * The HTML tree for main tag.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   177
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   178
    protected HtmlTree mainTree = HtmlTree.MAIN();
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   179
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   180
    /**
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   181
     * The HTML tree for section tag.
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   182
     */
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   183
    protected HtmlTree sectionTree = HtmlTree.SECTION();
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   184
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   185
    /**
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   186
     * Constructor to construct ModuleWriter object and to generate "moduleName-summary.html" file.
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   187
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   188
     * @param configuration the configuration of the doclet.
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   189
     * @param mdle        Module under consideration.
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   190
     * @param prevModule   Previous module in the sorted array.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   191
     * @param nextModule   Next module in the sorted array.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   192
     */
45417
f7479ee8de69 8177848: Rename Configuration(Impl) classes
ksrini
parents: 44807
diff changeset
   193
    public ModuleWriterImpl(HtmlConfiguration configuration,
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   194
            ModuleElement mdle, ModuleElement prevModule, ModuleElement nextModule) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   195
        super(configuration, DocPaths.moduleSummary(mdle));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   196
        this.prevModule = prevModule;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   197
        this.nextModule = nextModule;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   198
        this.mdle = mdle;
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   199
        this.moduleMode = configuration.docEnv.getModuleMode();
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   200
        computeModulesData();
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   201
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   202
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   203
    /**
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   204
     * Get the module header.
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   205
     *
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   206
     * @param heading the heading for the section
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   207
     */
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   208
    @Override
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   209
    public Content getModuleHeader(String heading) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   210
        HtmlTree bodyTree = getBody(true, getWindowTitle(mdle.getQualifiedName().toString()));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   211
        HtmlTree htmlTree = (configuration.allowTag(HtmlTag.HEADER))
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   212
                ? HtmlTree.HEADER()
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   213
                : bodyTree;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   214
        addTop(htmlTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   215
        addNavLinks(true, htmlTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   216
        if (configuration.allowTag(HtmlTag.HEADER)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   217
            bodyTree.addContent(htmlTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   218
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   219
        HtmlTree div = new HtmlTree(HtmlTag.DIV);
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   220
        div.setStyle(HtmlStyle.header);
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   221
        Content annotationContent = new HtmlTree(HtmlTag.P);
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   222
        addAnnotationInfo(mdle, annotationContent);
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   223
        div.addContent(annotationContent);
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   224
        Content label = mdle.isOpen() && (configuration.docEnv.getModuleMode() == ModuleMode.ALL)
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   225
                ? contents.openModuleLabel : contents.moduleLabel;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   226
        Content tHeading = HtmlTree.HEADING(HtmlConstants.TITLE_HEADING, true,
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   227
                HtmlStyle.title, label);
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   228
        tHeading.addContent(Contents.SPACE);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   229
        Content moduleHead = new RawHtml(heading);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   230
        tHeading.addContent(moduleHead);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   231
        div.addContent(tHeading);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   232
        if (configuration.allowTag(HtmlTag.MAIN)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   233
            mainTree.addContent(div);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   234
        } else {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   235
            bodyTree.addContent(div);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   236
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   237
        return bodyTree;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   238
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   239
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   240
    /**
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   241
     * Get the content header.
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   242
     */
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   243
    @Override
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   244
    public Content getContentHeader() {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   245
        HtmlTree div = new HtmlTree(HtmlTag.DIV);
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   246
        div.setStyle(HtmlStyle.contentContainer);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   247
        return div;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   248
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   249
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   250
    /**
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   251
     * Get the summary section header.
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   252
     */
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   253
    @Override
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   254
    public Content getSummaryHeader() {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   255
        HtmlTree li = new HtmlTree(HtmlTag.LI);
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   256
        li.setStyle(HtmlStyle.blockList);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   257
        return li;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   258
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   259
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   260
    /**
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   261
     * Get the summary tree.
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   262
     *
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   263
     * @param summaryContentTree the content tree to be added to the summary tree.
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   264
     */
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   265
    @Override
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   266
    public Content getSummaryTree(Content summaryContentTree) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   267
        HtmlTree ul = HtmlTree.UL(HtmlStyle.blockList, summaryContentTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   268
        return ul;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   269
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   270
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   271
    /**
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   272
     * Compute the modules data that will be displayed in various tables on the module summary page.
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   273
     */
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   274
    public void computeModulesData() {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   275
        CommentHelper ch = utils.getCommentHelper(mdle);
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   276
        // Get module dependencies using the module's transitive closure.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   277
        Map<ModuleElement, String> dependentModules = utils.getDependentModules(mdle);
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   278
        // Add all dependent modules to indirect modules set. We will remove the modules,
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   279
        // listed using the requires directive, from this set to come up with the table of indirect
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   280
        // required modules.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   281
        dependentModules.forEach((module, mod) -> {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   282
            if (shouldDocument(module)) {
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   283
                indirectModules.put(module, new StringContent(mod));
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   284
            }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   285
        });
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   286
        (ElementFilter.requiresIn(mdle.getDirectives())).forEach((directive) -> {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   287
            ModuleElement m = directive.getDependency();
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   288
            if (shouldDocument(m)) {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   289
                if (moduleMode == ModuleMode.ALL || directive.isTransitive()) {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   290
                    requires.put(m, new StringContent(utils.getModifiers(directive)));
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   291
            } else {
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   292
                    // For api mode, just keep the public requires in dependentModules for display of
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   293
                    // indirect packages in the "Packages" section.
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   294
                    dependentModules.remove(m);
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   295
                }
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   296
                indirectModules.remove(m);
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   297
        }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   298
        });
44293
2f47b2c16612 8176778: javadoc does not produce summary pages for aggregated modules
ksrini
parents: 42831
diff changeset
   299
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   300
        // Get all packages if module is open or if displaying concealed modules
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   301
        for (PackageElement pkg : utils.getModulePackageMap().getOrDefault(mdle, Collections.emptySet())) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   302
            if (shouldDocument(pkg) && (mdle.isOpen() || moduleMode == ModuleMode.ALL)) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   303
                PackageEntry e = new PackageEntry();
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   304
                if (mdle.isOpen()) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   305
                    e.openedTo = Collections.emptySet();
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   306
                }
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   307
                packages.put(pkg, e);
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   308
            }
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   309
        };
44293
2f47b2c16612 8176778: javadoc does not produce summary pages for aggregated modules
ksrini
parents: 42831
diff changeset
   310
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   311
        // Get all exported packages for the module, using the exports directive for the module.
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   312
        for (ModuleElement.ExportsDirective directive : ElementFilter.exportsIn(mdle.getDirectives())) {
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   313
            PackageElement p = directive.getPackage();
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   314
            if (shouldDocument(p)) {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   315
                List<? extends ModuleElement> targetMdles = directive.getTargetModules();
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   316
                // Include package if in details mode, or exported to all (i.e. targetModules == null)
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   317
                if (moduleMode == ModuleMode.ALL || targetMdles == null) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   318
                    PackageEntry packageEntry = packages.computeIfAbsent(p, pkg -> new PackageEntry());
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   319
                    SortedSet<ModuleElement> mdleList = new TreeSet<>(utils.makeModuleComparator());
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   320
                    if (targetMdles != null) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   321
                        mdleList.addAll(targetMdles);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   322
                    }
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   323
                    packageEntry.exportedTo = mdleList;
44689
53c703004306 8175823: doclet crashes when documenting a single class in a module.
bpatel
parents: 44684
diff changeset
   324
                }
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   325
            }
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   326
        }
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   327
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   328
        // Get all opened packages for the module, using the opens directive for the module.
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   329
        // If it is an open module, there will be no separate opens directives.
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   330
        for (ModuleElement.OpensDirective directive : ElementFilter.opensIn(mdle.getDirectives())) {
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   331
            PackageElement p = directive.getPackage();
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   332
            if (shouldDocument(p)) {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   333
                List<? extends ModuleElement> targetMdles = directive.getTargetModules();
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   334
                // Include package if in details mode, or opened to all (i.e. targetModules == null)
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   335
                if (moduleMode == ModuleMode.ALL || targetMdles == null) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   336
                    PackageEntry packageEntry = packages.computeIfAbsent(p, pkg -> new PackageEntry());
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   337
                    SortedSet<ModuleElement> mdleList = new TreeSet<>(utils.makeModuleComparator());
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   338
                    if (targetMdles != null) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   339
                        mdleList.addAll(targetMdles);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   340
                    }
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   341
                    packageEntry.openedTo = mdleList;
44689
53c703004306 8175823: doclet crashes when documenting a single class in a module.
bpatel
parents: 44684
diff changeset
   342
                }
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   343
            }
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   344
        }
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   345
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   346
        // Get all the exported and opened packages, for the transitive closure of the module, to be displayed in
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   347
        // the indirect packages tables.
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   348
        dependentModules.forEach((module, mod) -> {
44807
47e09e3f1829 8178339: javadoc includes qualified opens in "Additional Opened Packages" section
ksrini
parents: 44689
diff changeset
   349
            SortedSet<PackageElement> exportPkgList = new TreeSet<>(utils.makePackageComparator());
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   350
            (ElementFilter.exportsIn(module.getDirectives())).forEach((directive) -> {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   351
                PackageElement pkg = directive.getPackage();
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   352
                if (shouldDocument(pkg)) {
44807
47e09e3f1829 8178339: javadoc includes qualified opens in "Additional Opened Packages" section
ksrini
parents: 44689
diff changeset
   353
                    // Qualified exports are not displayed in API mode
47e09e3f1829 8178339: javadoc includes qualified opens in "Additional Opened Packages" section
ksrini
parents: 44689
diff changeset
   354
                    if (moduleMode == ModuleMode.ALL || directive.getTargetModules() == null) {
47e09e3f1829 8178339: javadoc includes qualified opens in "Additional Opened Packages" section
ksrini
parents: 44689
diff changeset
   355
                        exportPkgList.add(pkg);
47e09e3f1829 8178339: javadoc includes qualified opens in "Additional Opened Packages" section
ksrini
parents: 44689
diff changeset
   356
                    }
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   357
                }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   358
            });
44807
47e09e3f1829 8178339: javadoc includes qualified opens in "Additional Opened Packages" section
ksrini
parents: 44689
diff changeset
   359
            // If none of the indirect modules have exported packages to be displayed, we should not be
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   360
            // displaying the table and so it should not be added to the map.
44807
47e09e3f1829 8178339: javadoc includes qualified opens in "Additional Opened Packages" section
ksrini
parents: 44689
diff changeset
   361
            if (!exportPkgList.isEmpty()) {
47e09e3f1829 8178339: javadoc includes qualified opens in "Additional Opened Packages" section
ksrini
parents: 44689
diff changeset
   362
                indirectPackages.put(module, exportPkgList);
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   363
            }
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   364
            SortedSet<PackageElement> openPkgList = new TreeSet<>(utils.makePackageComparator());
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   365
            if (module.isOpen()) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   366
                openPkgList.addAll(utils.getModulePackageMap().getOrDefault(module, Collections.emptySet()));
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   367
            } else {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   368
                (ElementFilter.opensIn(module.getDirectives())).forEach((directive) -> {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   369
                    PackageElement pkg = directive.getPackage();
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   370
                    if (shouldDocument(pkg)) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   371
                        // Qualified opens are not displayed in API mode
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   372
                        if (moduleMode == ModuleMode.ALL || directive.getTargetModules() == null) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   373
                            openPkgList.add(pkg);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   374
                        }
44807
47e09e3f1829 8178339: javadoc includes qualified opens in "Additional Opened Packages" section
ksrini
parents: 44689
diff changeset
   375
                    }
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   376
                });
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   377
            }
44807
47e09e3f1829 8178339: javadoc includes qualified opens in "Additional Opened Packages" section
ksrini
parents: 44689
diff changeset
   378
            // If none of the indirect modules have opened packages to be displayed, we should not be
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   379
            // displaying the table and so it should not be added to the map.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   380
            if (!openPkgList.isEmpty()) {
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   381
                indirectOpenPackages.put(module, openPkgList);
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   382
            }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   383
        });
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   384
        // Get all the services listed as uses directive.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   385
        (ElementFilter.usesIn(mdle.getDirectives())).forEach((directive) -> {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   386
            TypeElement u = directive.getService();
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   387
            if (shouldDocument(u)) {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   388
                uses.add(u);
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   389
            }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   390
        });
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   391
        // Get all the services and implementations listed as provides directive.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   392
        (ElementFilter.providesIn(mdle.getDirectives())).forEach((directive) -> {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   393
            TypeElement u = directive.getService();
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   394
            if (shouldDocument(u)) {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   395
                List<? extends TypeElement> implList = directive.getImplementations();
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   396
                SortedSet<TypeElement> implSet = new TreeSet<>(utils.makeAllClassesComparator());
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   397
                implSet.addAll(implList);
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   398
                provides.put(u, implSet);
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   399
            }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   400
        });
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   401
        // Generate the map of all services listed using @provides, and the description.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   402
        (utils.getBlockTags(mdle, DocTree.Kind.PROVIDES)).forEach((tree) -> {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   403
            TypeElement t = ch.getServiceType(configuration, tree);
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   404
            if (t != null) {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   405
                providesTrees.put(t, commentTagsToContent(tree, mdle, ch.getDescription(configuration, tree), false));
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   406
            }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   407
        });
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   408
        // Generate the map of all services listed using @uses, and the description.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   409
        (utils.getBlockTags(mdle, DocTree.Kind.USES)).forEach((tree) -> {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   410
            TypeElement t = ch.getServiceType(configuration, tree);
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   411
            if (t != null) {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   412
                usesTrees.put(t, commentTagsToContent(tree, mdle, ch.getDescription(configuration, tree), false));
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   413
            }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   414
        });
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   415
    }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   416
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   417
    /**
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   418
     * Returns true if the element should be documented on the module summary page.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   419
     *
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   420
     * @param element the element to be checked
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   421
     * @return true if the element should be documented
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   422
     */
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   423
    public boolean shouldDocument(Element element) {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   424
        return (moduleMode == ModuleMode.ALL || utils.isIncluded(element));
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   425
    }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   426
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   427
    /**
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   428
     * Returns true if there are elements to be displayed.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   429
     *
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   430
     * @param section set of elements
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   431
     * @return true if there are elements to be displayed
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   432
     */
44684
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   433
    public boolean display(Set<? extends Element> section) {
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   434
        return section != null && !section.isEmpty();
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   435
    }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   436
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   437
    /**
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   438
     * Returns true if there are elements to be displayed.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   439
     *
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   440
     * @param section map of elements.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   441
     * @return true if there are elements to be displayed
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   442
     */
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   443
    public boolean display(Map<? extends Element, ?> section) {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   444
        return section != null && !section.isEmpty();
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   445
    }
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   446
44684
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   447
    /*
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   448
     * Returns true, in API mode, if at least one type element in
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   449
     * the typeElements set is referenced by a javadoc tag in tagsMap.
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   450
     */
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   451
    private boolean displayServices(Set<TypeElement> typeElements,
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   452
                                    Map<TypeElement, Content> tagsMap) {
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   453
        return typeElements != null &&
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   454
                typeElements.stream().anyMatch((v) -> displayServiceDirective(v, tagsMap));
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   455
    }
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   456
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   457
    /*
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   458
     * Returns true, in API mode, if the type element is referenced
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   459
     * from a javadoc tag in tagsMap.
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   460
     */
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   461
    private boolean displayServiceDirective(TypeElement typeElement,
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   462
                                            Map<TypeElement, Content> tagsMap) {
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   463
        return moduleMode == ModuleMode.ALL || tagsMap.containsKey(typeElement);
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   464
    }
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   465
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   466
    /**
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   467
     * Add the summary header.
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   468
     *
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   469
     * @param startMarker the marker comment
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   470
     * @param markerAnchor the marker anchor for the section
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   471
     * @param heading the heading for the section
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   472
     * @param htmltree the content tree to which the information is added
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   473
     */
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   474
    public void addSummaryHeader(Content startMarker, SectionName markerAnchor, Content heading,
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   475
            Content htmltree) {
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   476
        htmltree.addContent(startMarker);
47850
4a28dc8a86c2 8190821: Introduce a new Links builder class
jjg
parents: 47847
diff changeset
   477
        htmltree.addContent(links.createAnchor(markerAnchor));
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   478
        htmltree.addContent(HtmlTree.HEADING(HtmlTag.H3, heading));
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   479
    }
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   480
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   481
    /**
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   482
     * Get a table, with two columns.
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   483
     *
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   484
     * @param caption the table caption
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   485
     * @param tableSummary the summary for the table
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   486
     * @param tableStyle the table style
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   487
     * @param tableHeader the table header
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   488
     * @return a content object
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   489
     */
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   490
    private Table getTable2(Content caption, String tableSummary, HtmlStyle tableStyle,
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   491
            TableHeader tableHeader) {
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   492
        return new Table(configuration.htmlVersion, tableStyle)
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   493
                .setSummary(tableSummary)
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   494
                .setCaption(caption)
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   495
                .setHeader(tableHeader)
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   496
                .setColumnStyles(HtmlStyle.colFirst, HtmlStyle.colLast);
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   497
    }
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   498
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   499
    /**
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   500
     * Get a table, with three columns, with the second column being the defining column.
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   501
     *
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   502
     * @param caption the table caption
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   503
     * @param tableSummary the summary for the table
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   504
     * @param tableStyle the table style
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   505
     * @param tableHeader the table header
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   506
     * @return a content object
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   507
     */
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   508
    private Table getTable3(Content caption, String tableSummary, HtmlStyle tableStyle,
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   509
            TableHeader tableHeader) {
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   510
        return new Table(configuration.htmlVersion, tableStyle)
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   511
                .setSummary(tableSummary)
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   512
                .setCaption(caption)
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   513
                .setHeader(tableHeader)
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   514
                .setRowScopeColumn(1)
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   515
                .setColumnStyles(HtmlStyle.colFirst, HtmlStyle.colSecond, HtmlStyle.colLast);
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   516
    }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   517
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   518
    /**
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   519
     * {@inheritDoc}
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   520
     */
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   521
    @Override
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   522
    public void addModulesSummary(Content summaryContentTree) {
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   523
        if (display(requires) || display(indirectModules)) {
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   524
            TableHeader requiresTableHeader =
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   525
                    new TableHeader(contents.modifierLabel, contents.moduleLabel,
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   526
                            contents.descriptionLabel);
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   527
            HtmlTree li = new HtmlTree(HtmlTag.LI);
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   528
            li.setStyle(HtmlStyle.blockList);
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   529
            addSummaryHeader(HtmlConstants.START_OF_MODULES_SUMMARY, SectionName.MODULES,
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   530
                    contents.navModules, li);
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   531
            if (display(requires)) {
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   532
                String text = resources.getText("doclet.Requires_Summary");
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   533
                String tableSummary = resources.getText("doclet.Member_Table_Summary",
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   534
                        text,
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   535
                        resources.getText("doclet.modules"));
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   536
                Content caption = getTableCaption(new StringContent(text));
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   537
                Table table = getTable3(caption, tableSummary, HtmlStyle.requiresSummary,
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   538
                            requiresTableHeader);
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   539
                addModulesList(requires, table);
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   540
                li.addContent(table.toContent());
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   541
            }
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   542
            // Display indirect modules table in both "api" and "all" mode.
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   543
            if (display(indirectModules)) {
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   544
                String amrText = resources.getText("doclet.Indirect_Requires_Summary");
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   545
                String amrTableSummary = resources.getText("doclet.Member_Table_Summary",
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   546
                        amrText,
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   547
                        configuration.getText("doclet.modules"));
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   548
                Content amrCaption = getTableCaption(new StringContent(amrText));
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   549
                Table amrTable = getTable3(amrCaption, amrTableSummary, HtmlStyle.requiresSummary,
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   550
                            requiresTableHeader);
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   551
                addModulesList(indirectModules, amrTable);
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   552
                li.addContent(amrTable.toContent());
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   553
            }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   554
            HtmlTree ul = HtmlTree.UL(HtmlStyle.blockList, li);
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   555
            summaryContentTree.addContent(ul);
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   556
        }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   557
    }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   558
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   559
    /**
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   560
     * Add the list of modules.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   561
     *
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   562
     * @param mdleMap map of modules and modifiers
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   563
     * @param tbody the content tree to which the list will be added
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   564
     */
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   565
    private void addModulesList(Map<ModuleElement, Content> mdleMap, Table table) {
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   566
        for (ModuleElement m : mdleMap.keySet()) {
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   567
            Content modifiers = mdleMap.get(m);
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   568
            Content moduleLink = getModuleLink(m, new StringContent(m.getQualifiedName()));
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   569
            Content moduleSummary = new ContentBuilder();
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   570
            addSummaryComment(m, moduleSummary);
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   571
            table.addRow(modifiers, moduleLink, moduleSummary);
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   572
        }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   573
    }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   574
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   575
    @Override
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   576
    public void addPackagesSummary(Content summaryContentTree) {
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   577
        if (display(packages)
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   578
                || display(indirectPackages) || display(indirectOpenPackages)) {
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   579
            HtmlTree li = new HtmlTree(HtmlTag.LI);
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   580
            li.setStyle(HtmlStyle.blockList);
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   581
            addSummaryHeader(HtmlConstants.START_OF_PACKAGES_SUMMARY, SectionName.PACKAGES,
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   582
                    contents.navPackages, li);
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   583
            if (display(packages)) {
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   584
                String tableSummary = resources.getText("doclet.Member_Table_Summary",
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   585
                        resources.getText("doclet.Packages_Summary"),
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   586
                        resources.getText("doclet.packages"));
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   587
                addPackageSummary(tableSummary, li);
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   588
            }
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   589
            TableHeader indirectPackagesHeader =
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   590
                    new TableHeader(contents.fromLabel, contents.packagesLabel);
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   591
            if (display(indirectPackages)) {
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   592
                String aepText = resources.getText("doclet.Indirect_Exports_Summary");
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   593
                String aepTableSummary = resources.getText("doclet.Indirect_Packages_Table_Summary",
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   594
                        aepText,
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   595
                        resources.getText("doclet.modules"),
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   596
                        resources.getText("doclet.packages"));
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   597
                Table aepTable = getTable2(new StringContent(aepText), aepTableSummary,
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   598
                        HtmlStyle.packagesSummary, indirectPackagesHeader);
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   599
                addIndirectPackages(aepTable, indirectPackages);
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   600
                li.addContent(aepTable.toContent());
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   601
            }
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   602
            if (display(indirectOpenPackages)) {
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   603
                String aopText = resources.getText("doclet.Indirect_Opens_Summary");
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   604
                String aopTableSummary = resources.getText("doclet.Indirect_Packages_Table_Summary",
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   605
                        aopText,
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   606
                        resources.getText("doclet.modules"),
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   607
                        resources.getText("doclet.packages"));
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   608
                Table aopTable = getTable2(new StringContent(aopText), aopTableSummary,
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   609
                        HtmlStyle.packagesSummary, indirectPackagesHeader);
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   610
                addIndirectPackages(aopTable, indirectOpenPackages);
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   611
                li.addContent(aopTable.toContent());
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   612
            }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   613
            HtmlTree ul = HtmlTree.UL(HtmlStyle.blockList, li);
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   614
            summaryContentTree.addContent(ul);
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   615
        }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   616
    }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   617
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   618
    /**
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   619
     * Add the package summary for the module.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   620
     *
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   621
     * @param tableSummary
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   622
     * @param li
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   623
     */
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   624
    public void addPackageSummary(String tableSummary, HtmlTree li) {
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   625
        Table table = new Table(configuration.htmlVersion, HtmlStyle.packagesSummary)
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   626
                .setSummary(tableSummary)
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   627
                .setDefaultTab(resources.getText("doclet.All_Packages"))
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   628
                .addTab(resources.getText("doclet.Exported_Packages_Summary"), this::isExported)
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   629
                .addTab(resources.getText("doclet.Opened_Packages_Summary"), this::isOpened)
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   630
                .addTab(resources.getText("doclet.Concealed_Packages_Summary"), this::isConcealed)
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   631
                .setTabScript(i -> String.format("showPkgs(%d);", i))
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   632
                .setTabScriptVariable("packages");
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   633
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   634
        // Determine whether to show the "Exported To" and "Opened To" columns,
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   635
        // based on whether such columns would provide "useful" info.
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   636
        int numExports = 0;
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   637
        int numUnqualifiedExports = 0;
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   638
        int numOpens = 0;
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   639
        int numUnqualifiedOpens = 0;
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   640
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   641
        for (PackageEntry e : packages.values()) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   642
            if (e.exportedTo != null) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   643
                numExports++;
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   644
                if (e.exportedTo.isEmpty()) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   645
                    numUnqualifiedExports++;
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   646
                }
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   647
            }
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   648
            if (e.openedTo != null) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   649
                numOpens++;
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   650
                if (e.openedTo.isEmpty()) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   651
                    numUnqualifiedOpens++;
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   652
                }
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   653
            }
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   654
        }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   655
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   656
        boolean showExportedTo = numExports > 0 && (numOpens > 0   || numUnqualifiedExports < packages.size());
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   657
        boolean showOpenedTo   = numOpens > 0   && (numExports > 0 || numUnqualifiedOpens < packages.size());
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   658
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   659
        // Create the table header and column styles.
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   660
        List<Content> colHeaders = new ArrayList<>();
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   661
        List<HtmlStyle> colStyles = new ArrayList<>();
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   662
        colHeaders.add(contents.packageLabel);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   663
        colStyles.add(HtmlStyle.colFirst);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   664
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   665
        if (showExportedTo) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   666
            colHeaders.add(contents.exportedTo);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   667
            colStyles.add(HtmlStyle.colSecond);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   668
        }
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   669
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   670
        if (showOpenedTo) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   671
            colHeaders.add(contents.openedTo);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   672
            colStyles.add(HtmlStyle.colSecond);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   673
        }
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   674
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   675
        colHeaders.add(contents.descriptionLabel);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   676
        colStyles.add(HtmlStyle.colLast);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   677
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   678
        table.setHeader(new TableHeader(colHeaders).styles(colStyles))
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   679
                .setColumnStyles(colStyles);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   680
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   681
        // Add the table rows, based on the "packages" map.
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   682
        for (Map.Entry<PackageElement, PackageEntry> e : packages.entrySet()) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   683
            PackageElement pkg = e.getKey();
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   684
            PackageEntry entry = e.getValue();
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   685
            List<Content> row = new ArrayList<>();
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   686
            Content pkgLinkContent = getPackageLink(pkg, new StringContent(utils.getPackageName(pkg)));
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   687
            row.add(pkgLinkContent);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   688
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   689
            if (showExportedTo) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   690
                row.add(getPackageExportOpensTo(entry.exportedTo));
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   691
            }
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   692
            if (showOpenedTo) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   693
                row.add(getPackageExportOpensTo(entry.openedTo));
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   694
            }
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   695
            Content summary = new ContentBuilder();
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   696
            addSummaryComment(pkg, summary);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   697
            row.add(summary);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   698
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   699
            table.addRow(pkg, row);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   700
        }
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   701
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   702
        li.addContent(table.toContent());
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   703
        if (table.needsScript()) {
47847
7640bc1eb94f 8190818: Introduce a new Script builder class
jjg
parents: 47846
diff changeset
   704
            mainBodyScript.append(table.getScript());
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   705
        }
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   706
    }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   707
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   708
    private boolean isExported(Element e) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   709
        PackageEntry entry = packages.get((PackageElement) e);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   710
        return (entry != null) && (entry.exportedTo != null);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   711
    }
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   712
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   713
    private boolean isOpened(Element e) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   714
        PackageEntry entry = packages.get((PackageElement) e);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   715
        return (entry != null) && (entry.openedTo != null);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   716
    }
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   717
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   718
    private boolean isConcealed(Element e) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   719
        PackageEntry entry = packages.get((PackageElement) e);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   720
        return (entry != null) && (entry.exportedTo == null) && (entry.openedTo == null);
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   721
    }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   722
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   723
    private Content getPackageExportOpensTo(Set<ModuleElement> modules) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   724
        if (modules == null) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   725
            return new StringContent(resources.getText("doclet.None"));
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   726
        } else if (modules.isEmpty()) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   727
            return new StringContent(resources.getText("doclet.All_Modules"));
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   728
        } else {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   729
            Content list = new ContentBuilder();
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   730
            for (ModuleElement m : modules) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   731
                if (!list.isEmpty()) {
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   732
                    list.addContent(new StringContent(", "));
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   733
                }
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   734
                list.addContent(getModuleLink(m, new StringContent(m.getQualifiedName())));
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   735
            }
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   736
            return list;
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   737
        }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   738
    }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   739
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   740
    /**
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   741
     * Add the indirect packages for the module being documented.
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   742
     *
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   743
     * @param table the table to which the content rows will be added
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   744
     * @param ip indirect packages to be added
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   745
     */
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   746
    public void addIndirectPackages(Table table, Map<ModuleElement, SortedSet<PackageElement>> ip) {
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   747
        for (Map.Entry<ModuleElement, SortedSet<PackageElement>> entry : ip.entrySet()) {
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   748
            ModuleElement m = entry.getKey();
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   749
            SortedSet<PackageElement> pkgList = entry.getValue();
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   750
            Content moduleLinkContent = getModuleLink(m, new StringContent(m.getQualifiedName()));
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   751
            Content list = new ContentBuilder();
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   752
            String sep = "";
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   753
            for (PackageElement pkg : pkgList) {
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   754
                list.addContent(sep);
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   755
                list.addContent(getPackageLink(pkg, new StringContent(utils.getPackageName(pkg))));
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   756
                sep = " ";
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   757
            }
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   758
            table.addRow(moduleLinkContent, list);
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   759
        }
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   760
    }
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   761
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   762
    /**
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   763
     * {@inheritDoc}
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   764
     */
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   765
    @Override
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   766
    public void addServicesSummary(Content summaryContentTree) {
44684
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   767
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   768
        boolean haveUses = displayServices(uses, usesTrees);
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   769
        boolean haveProvides = displayServices(provides.keySet(), providesTrees);
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   770
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   771
        if (haveProvides || haveUses) {
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   772
            HtmlTree li = new HtmlTree(HtmlTag.LI);
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   773
            li.setStyle(HtmlStyle.blockList);
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   774
            addSummaryHeader(HtmlConstants.START_OF_SERVICES_SUMMARY, SectionName.SERVICES,
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   775
                    contents.navServices, li);
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   776
            TableHeader usesProvidesTableHeader =
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   777
                    new TableHeader(contents.typeLabel, contents.descriptionLabel);
44684
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   778
            if (haveProvides) {
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   779
                String label = resources.getText("doclet.Provides_Summary");
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   780
                String tableSummary = resources.getText("doclet.Member_Table_Summary",
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   781
                        label,
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   782
                        resources.getText("doclet.types"));
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   783
                Table table = getTable2(new StringContent(label), tableSummary, HtmlStyle.providesSummary,
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   784
                        usesProvidesTableHeader);
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   785
                addProvidesList(table);
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   786
                if (!table.isEmpty()) {
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   787
                    li.addContent(table.toContent());
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   788
                }
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   789
            }
44684
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   790
            if (haveUses){
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   791
                String label = resources.getText("doclet.Uses_Summary");
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   792
                String tableSummary = resources.getText("doclet.Member_Table_Summary",
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   793
                        label,
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   794
                        resources.getText("doclet.types"));
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   795
                Table table = getTable2(new StringContent(label), tableSummary, HtmlStyle.usesSummary,
47427
251676148c62 8189405: More cleanup in HtmlWriter
jjg
parents: 47272
diff changeset
   796
                        usesProvidesTableHeader);
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   797
                addUsesList(table);
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   798
                if (!table.isEmpty()) {
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   799
                    li.addContent(table.toContent());
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   800
                }
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   801
            }
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   802
            HtmlTree ul = HtmlTree.UL(HtmlStyle.blockList, li);
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   803
            summaryContentTree.addContent(ul);
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   804
        }
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   805
    }
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   806
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   807
    /**
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   808
     * Add the uses list for the module.
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   809
     *
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   810
     * @param table the table to which the services used will be added
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   811
     */
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   812
    public void addUsesList(Table table) {
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   813
        Content typeLinkContent;
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   814
        Content description;
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   815
        for (TypeElement t : uses) {
44684
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   816
            if (!displayServiceDirective(t, usesTrees)) {
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   817
                continue;
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   818
            }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   819
            typeLinkContent = getLink(new LinkInfoImpl(configuration, LinkInfoImpl.Kind.PACKAGE, t));
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   820
            Content summary = new ContentBuilder();
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   821
            if (display(usesTrees)) {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   822
                description = usesTrees.get(t);
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   823
                if (description != null) {
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   824
                    summary.addContent(description);
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   825
                }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   826
            }
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   827
            addSummaryComment(t, summary);
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   828
            table.addRow(typeLinkContent, summary);
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   829
        }
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   830
    }
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   831
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   832
    /**
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   833
     * Add the provides list for the module.
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   834
     *
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   835
     * @param table the table to which the services provided will be added
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   836
     */
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   837
    public void addProvidesList(Table table) {
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   838
        SortedSet<TypeElement> implSet;
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   839
        Content description;
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   840
        for (Map.Entry<TypeElement, SortedSet<TypeElement>> entry : provides.entrySet()) {
44684
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   841
            TypeElement srv = entry.getKey();
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   842
            if (!displayServiceDirective(srv, providesTrees)) {
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   843
                continue;
44684
6ce4d52084e8 8178067: support for @uses/@provides tags is broken
ksrini
parents: 44564
diff changeset
   844
            }
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   845
            implSet = entry.getValue();
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   846
            Content srvLinkContent = getLink(new LinkInfoImpl(configuration, LinkInfoImpl.Kind.PACKAGE, srv));
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   847
            Content desc = new ContentBuilder();
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   848
            if (display(providesTrees)) {
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   849
                description = providesTrees.get(srv);
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   850
                if (description != null) {
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   851
                    desc.addContent(description);
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   852
                }
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   853
            }
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   854
            addSummaryComment(srv, desc);
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   855
            // Only display the implementation details in the "all" mode.
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   856
            if (moduleMode == ModuleMode.ALL && !implSet.isEmpty()) {
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   857
                desc.addContent(new HtmlTree(HtmlTag.BR));
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   858
                desc.addContent("(");
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   859
                HtmlTree implSpan = HtmlTree.SPAN(HtmlStyle.implementationLabel, contents.implementation);
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   860
                desc.addContent(implSpan);
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   861
                desc.addContent(Contents.SPACE);
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   862
                String sep = "";
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   863
                for (TypeElement impl : implSet) {
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   864
                    desc.addContent(sep);
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   865
                    desc.addContent(getLink(new LinkInfoImpl(configuration, LinkInfoImpl.Kind.PACKAGE, impl)));
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   866
                    sep = ", ";
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   867
                }
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   868
                desc.addContent(")");
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   869
            }
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   870
            table.addRow(srvLinkContent, desc);
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   871
        }
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   872
    }
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   873
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   874
    /**
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   875
     * Add the module deprecation information to the documentation tree.
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   876
     *
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   877
     * @param div the content tree to which the deprecation information will be added
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   878
     */
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   879
    public void addDeprecationInfo(Content div) {
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   880
        List<? extends DocTree> deprs = utils.getBlockTags(mdle, DocTree.Kind.DEPRECATED);
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   881
        if (utils.isDeprecated(mdle)) {
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   882
            CommentHelper ch = utils.getCommentHelper(mdle);
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   883
            HtmlTree deprDiv = new HtmlTree(HtmlTag.DIV);
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
   884
            deprDiv.setStyle(HtmlStyle.deprecationBlock);
42816
3638773ff1b0 8162674: change javadoc output text and style emitted by for-removal deprecations
bpatel
parents: 42407
diff changeset
   885
            Content deprPhrase = HtmlTree.SPAN(HtmlStyle.deprecatedLabel, getDeprecatedPhrase(mdle));
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   886
            deprDiv.addContent(deprPhrase);
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   887
            if (!deprs.isEmpty()) {
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   888
                List<? extends DocTree> commentTags = ch.getDescription(configuration, deprs.get(0));
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   889
                if (!commentTags.isEmpty()) {
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   890
                    addInlineDeprecatedComment(mdle, deprs.get(0), deprDiv);
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   891
                }
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   892
            }
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   893
            div.addContent(deprDiv);
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   894
        }
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   895
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   896
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   897
    /**
37747
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   898
     * {@inheritDoc}
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   899
     */
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   900
    @Override
37747
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   901
    public void addModuleDescription(Content moduleContentTree) {
41452
ddaef4bba083 8165991: Fix DocTreeFactory newDocCommentTree
ksrini
parents: 41157
diff changeset
   902
        if (!utils.getFullBody(mdle).isEmpty()) {
37747
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   903
            Content tree = configuration.allowTag(HtmlTag.SECTION) ? HtmlTree.SECTION() : moduleContentTree;
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   904
            addDeprecationInfo(tree);
37747
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   905
            tree.addContent(HtmlConstants.START_OF_MODULE_DESCRIPTION);
47850
4a28dc8a86c2 8190821: Introduce a new Links builder class
jjg
parents: 47847
diff changeset
   906
            tree.addContent(links.createAnchor(SectionName.MODULE_DESCRIPTION));
37747
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   907
            addInlineComment(mdle, tree);
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   908
            if (configuration.allowTag(HtmlTag.SECTION)) {
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   909
                moduleContentTree.addContent(tree);
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   910
            }
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   911
        }
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   912
    }
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   913
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   914
    /**
38911
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37943
diff changeset
   915
     * {@inheritDoc}
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37943
diff changeset
   916
     */
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   917
    @Override
38911
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37943
diff changeset
   918
    public void addModuleTags(Content moduleContentTree) {
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37943
diff changeset
   919
        Content tree = (configuration.allowTag(HtmlTag.SECTION))
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37943
diff changeset
   920
                ? HtmlTree.SECTION()
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37943
diff changeset
   921
                : moduleContentTree;
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37943
diff changeset
   922
        addTagsInfo(mdle, tree);
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37943
diff changeset
   923
        if (configuration.allowTag(HtmlTag.SECTION)) {
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37943
diff changeset
   924
            moduleContentTree.addContent(tree);
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37943
diff changeset
   925
        }
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37943
diff changeset
   926
    }
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37943
diff changeset
   927
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37943
diff changeset
   928
    /**
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   929
     * Add summary details to the navigation bar.
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   930
     *
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   931
     * @param subDiv the content tree to which the summary detail links will be added
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   932
     */
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   933
    @Override
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   934
    protected void addSummaryDetailLinks(Content subDiv) {
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
   935
        Content div = HtmlTree.DIV(getNavSummaryLinks());
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
   936
        subDiv.addContent(div);
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   937
    }
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   938
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   939
    /**
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   940
     * Get summary links for navigation bar.
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   941
     *
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   942
     * @return the content tree for the navigation summary links
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   943
     */
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
   944
    protected Content getNavSummaryLinks() {
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   945
        Content li = HtmlTree.LI(contents.moduleSubNavLabel);
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   946
        li.addContent(Contents.SPACE);
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   947
        Content ulNav = HtmlTree.UL(HtmlStyle.subNavList, li);
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   948
        Content liNav = new HtmlTree(HtmlTag.LI);
41452
ddaef4bba083 8165991: Fix DocTreeFactory newDocCommentTree
ksrini
parents: 41157
diff changeset
   949
        liNav.addContent(!utils.getFullBody(mdle).isEmpty() && !configuration.nocomment
47850
4a28dc8a86c2 8190821: Introduce a new Links builder class
jjg
parents: 47847
diff changeset
   950
                ? Links.createLink(SectionName.MODULE_DESCRIPTION, contents.navModuleDescription)
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   951
                : contents.navModuleDescription);
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   952
        addNavGap(liNav);
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   953
        liNav.addContent((display(requires) || display(indirectModules))
47850
4a28dc8a86c2 8190821: Introduce a new Links builder class
jjg
parents: 47847
diff changeset
   954
                ? Links.createLink(SectionName.MODULES, contents.navModules)
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   955
                : contents.navModules);
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   956
        addNavGap(liNav);
48325
e5cdedd37b78 8178070: duplicate entries in package table
jjg
parents: 47850
diff changeset
   957
        liNav.addContent((display(packages)
44564
4e1df2513486 8177562: Small updates to module summary page
jjg
parents: 44293
diff changeset
   958
                || display(indirectPackages) || display(indirectOpenPackages))
47850
4a28dc8a86c2 8190821: Introduce a new Links builder class
jjg
parents: 47847
diff changeset
   959
                ? Links.createLink(SectionName.PACKAGES, contents.navPackages)
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   960
                : contents.navPackages);
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   961
        addNavGap(liNav);
46082
c65be9fae87b 8185151: doclet may create a link to a missing anchor/id
pmuthuswamy
parents: 45417
diff changeset
   962
        liNav.addContent((displayServices(uses, usesTrees) || displayServices(provides.keySet(), providesTrees))
47850
4a28dc8a86c2 8190821: Introduce a new Links builder class
jjg
parents: 47847
diff changeset
   963
                ? Links.createLink(SectionName.SERVICES, contents.navServices)
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
   964
                : contents.navServices);
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   965
        ulNav.addContent(liNav);
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   966
        return ulNav;
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   967
    }
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   968
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   969
    /**
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   970
     * {@inheritDoc}
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   971
     */
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   972
    @Override
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   973
    public void addModuleContent(Content contentTree, Content moduleContentTree) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   974
        if (configuration.allowTag(HtmlTag.MAIN)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   975
            mainTree.addContent(moduleContentTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   976
            contentTree.addContent(mainTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   977
        } else {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   978
            contentTree.addContent(moduleContentTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   979
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   980
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   981
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   982
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   983
     * {@inheritDoc}
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   984
     */
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
   985
    @Override
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   986
    public void addModuleFooter(Content contentTree) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   987
        Content htmlTree = (configuration.allowTag(HtmlTag.FOOTER))
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   988
                ? HtmlTree.FOOTER()
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   989
                : contentTree;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   990
        addNavLinks(false, htmlTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   991
        addBottom(htmlTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   992
        if (configuration.allowTag(HtmlTag.FOOTER)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   993
            contentTree.addContent(htmlTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   994
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   995
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   996
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   997
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   998
     * {@inheritDoc}
42831
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
   999
     *
feff6f296019 8160196: Module summary page should display information based on "api" or "detail" mode.
bpatel
parents: 42816
diff changeset
  1000
     * @throws jdk.javadoc.internal.doclets.toolkit.util.DocFileIOException
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1001
     */
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
  1002
    @Override
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
  1003
    public void printDocument(Content contentTree) throws DocFileIOException {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1004
        printHtmlDocument(configuration.metakeywords.getMetaKeywordsForModule(mdle),
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1005
                true, contentTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1006
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1007
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1008
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1009
     * Add the module package deprecation information to the documentation tree.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1010
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1011
     * @param li the content tree to which the deprecation information will be added
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1012
     * @param pkg the PackageDoc that is added
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1013
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1014
    public void addPackageDeprecationInfo(Content li, PackageElement pkg) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1015
        List<? extends DocTree> deprs;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1016
        if (utils.isDeprecated(pkg)) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1017
            deprs = utils.getDeprecatedTrees(pkg);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1018
            HtmlTree deprDiv = new HtmlTree(HtmlTag.DIV);
47846
4e78aba768f0 8190295: Introduce a new Table builder class
jjg
parents: 47427
diff changeset
  1019
            deprDiv.setStyle(HtmlStyle.deprecationBlock);
42816
3638773ff1b0 8162674: change javadoc output text and style emitted by for-removal deprecations
bpatel
parents: 42407
diff changeset
  1020
            Content deprPhrase = HtmlTree.SPAN(HtmlStyle.deprecatedLabel, getDeprecatedPhrase(pkg));
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1021
            deprDiv.addContent(deprPhrase);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1022
            if (!deprs.isEmpty()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1023
                CommentHelper ch = utils.getCommentHelper(pkg);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1024
                List<? extends DocTree> commentTags = ch.getDescription(configuration, deprs.get(0));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1025
                if (!commentTags.isEmpty()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1026
                    addInlineDeprecatedComment(pkg, deprs.get(0), deprDiv);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1027
                }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1028
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1029
            li.addContent(deprDiv);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1030
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1031
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1032
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1033
    /**
37943
2efb75c09230 8154262: Navigation bar in javadoc generated pages needs to be updated to display module information
bpatel
parents: 37747
diff changeset
  1034
     * Get this module link.
2efb75c09230 8154262: Navigation bar in javadoc generated pages needs to be updated to display module information
bpatel
parents: 37747
diff changeset
  1035
     *
2efb75c09230 8154262: Navigation bar in javadoc generated pages needs to be updated to display module information
bpatel
parents: 37747
diff changeset
  1036
     * @return a content tree for the module link
2efb75c09230 8154262: Navigation bar in javadoc generated pages needs to be updated to display module information
bpatel
parents: 37747
diff changeset
  1037
     */
2efb75c09230 8154262: Navigation bar in javadoc generated pages needs to be updated to display module information
bpatel
parents: 37747
diff changeset
  1038
    @Override
2efb75c09230 8154262: Navigation bar in javadoc generated pages needs to be updated to display module information
bpatel
parents: 37747
diff changeset
  1039
    protected Content getNavLinkModule() {
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
  1040
        Content li = HtmlTree.LI(HtmlStyle.navBarCell1Rev, contents.moduleLabel);
37943
2efb75c09230 8154262: Navigation bar in javadoc generated pages needs to be updated to display module information
bpatel
parents: 37747
diff changeset
  1041
        return li;
2efb75c09230 8154262: Navigation bar in javadoc generated pages needs to be updated to display module information
bpatel
parents: 37747
diff changeset
  1042
    }
2efb75c09230 8154262: Navigation bar in javadoc generated pages needs to be updated to display module information
bpatel
parents: 37747
diff changeset
  1043
2efb75c09230 8154262: Navigation bar in javadoc generated pages needs to be updated to display module information
bpatel
parents: 37747
diff changeset
  1044
    /**
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1045
     * Get "PREV MODULE" link in the navigation bar.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1046
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1047
     * @return a content tree for the previous link
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1048
     */
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
  1049
    @Override
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1050
    public Content getNavLinkPrevious() {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1051
        Content li;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1052
        if (prevModule == null) {
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
  1053
            li = HtmlTree.LI(contents.prevModuleLabel);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1054
        } else {
47850
4a28dc8a86c2 8190821: Introduce a new Links builder class
jjg
parents: 47847
diff changeset
  1055
            li = HtmlTree.LI(Links.createLink(pathToRoot.resolve(DocPaths.moduleSummary(
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
  1056
                    prevModule)), contents.prevModuleLabel, "", ""));
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1057
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1058
        return li;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1059
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1060
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1061
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1062
     * Get "NEXT MODULE" link in the navigation bar.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1063
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1064
     * @return a content tree for the next link
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1065
     */
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41452
diff changeset
  1066
    @Override
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1067
    public Content getNavLinkNext() {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1068
        Content li;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1069
        if (nextModule == null) {
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
  1070
            li = HtmlTree.LI(contents.nextModuleLabel);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1071
        } else {
47850
4a28dc8a86c2 8190821: Introduce a new Links builder class
jjg
parents: 47847
diff changeset
  1072
            li = HtmlTree.LI(Links.createLink(pathToRoot.resolve(DocPaths.moduleSummary(
40303
96a1226aca18 8160697: HTMLWriter needs perf cleanup
jjg
parents: 39670
diff changeset
  1073
                    nextModule)), contents.nextModuleLabel, "", ""));
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1074
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1075
        return li;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1076
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
  1077
}