src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/builders/ModuleSummaryBuilder.java
author ksrini
Thu, 30 Nov 2017 06:14:25 -0800
changeset 48029 e9dab2492924
parent 47216 71c04702a3d5
child 54060 53a95878619f
permissions -rw-r--r--
8185985: Html files in doc-files directories should be wrapped with standard header and footer Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
45599
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
     2
 * Copyright (c) 2013, 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.toolkit.builders;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    27
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    28
import javax.lang.model.element.ModuleElement;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    29
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    30
import jdk.javadoc.internal.doclets.toolkit.Content;
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
    31
import jdk.javadoc.internal.doclets.toolkit.DocletException;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    32
import jdk.javadoc.internal.doclets.toolkit.ModuleSummaryWriter;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    33
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    34
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    35
/**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    36
 * Builds the summary for a given module.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    37
 *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    38
 *  <p><b>This is NOT part of any supported API.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    39
 *  If you write code that depends on this, you do so at your own risk.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    40
 *  This code and its internal interfaces are subject to change or
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    41
 *  deletion without notice.</b>
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    42
 *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    43
 * @author Bhavesh Patel
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    44
 */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    45
public class ModuleSummaryBuilder extends AbstractBuilder {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    46
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    47
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    48
     * The module being documented.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    49
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    50
    private final ModuleElement mdle;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    51
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    52
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    53
     * The doclet specific writer that will output the result.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    54
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    55
    private final ModuleSummaryWriter moduleWriter;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    56
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    57
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    58
     * The content that will be added to the module summary documentation tree.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    59
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    60
    private Content contentTree;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    61
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    62
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    63
     * Construct a new ModuleSummaryBuilder.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    64
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    65
     * @param context  the build context.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    66
     * @param mdle the module being documented.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    67
     * @param moduleWriter the doclet specific writer that will output the
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    68
     *        result.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    69
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    70
    private ModuleSummaryBuilder(Context context,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    71
            ModuleElement mdle, ModuleSummaryWriter moduleWriter) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    72
        super(context);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    73
        this.mdle = mdle;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    74
        this.moduleWriter = moduleWriter;
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
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    78
     * Construct a new ModuleSummaryBuilder.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    79
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    80
     * @param context  the build context.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    81
     * @param mdle the module being documented.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    82
     * @param moduleWriter the doclet specific writer that will output the
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    83
     *        result.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    84
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    85
     * @return an instance of a ModuleSummaryBuilder.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    86
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    87
    public static ModuleSummaryBuilder getInstance(Context context,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    88
            ModuleElement mdle, ModuleSummaryWriter moduleWriter) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    89
        return new ModuleSummaryBuilder(context, mdle, moduleWriter);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    90
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    91
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    92
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    93
     * Build the module summary.
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
    94
     *
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
    95
     * @throws DocletException if there is a problem while building the documentation
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    96
     */
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
    97
    @Override
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
    98
    public void build() throws DocletException {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    99
        if (moduleWriter == null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   100
            //Doclet does not support this output.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   101
            return;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   102
        }
45599
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   103
        buildModuleDoc(contentTree);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   104
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   105
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   106
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   107
     * Build the module documentation.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   108
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   109
     * @param contentTree the content tree to which the documentation will be added
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
   110
     * @throws DocletException if there is a problem while building the documentation
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   111
     */
45599
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   112
    protected void buildModuleDoc(Content contentTree) throws DocletException {
45771
e447c20c3ff9 8182736: javadoc generates bad names and broken module graph links
jjg
parents: 40605
diff changeset
   113
        contentTree = moduleWriter.getModuleHeader(mdle.getQualifiedName().toString());
45599
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   114
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   115
        buildContent(contentTree);
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   116
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   117
        moduleWriter.addModuleFooter(contentTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   118
        moduleWriter.printDocument(contentTree);
48029
e9dab2492924 8185985: Html files in doc-files directories should be wrapped with standard header and footer
ksrini
parents: 47216
diff changeset
   119
        // uncomment to support doc-files in modules
e9dab2492924 8185985: Html files in doc-files directories should be wrapped with standard header and footer
ksrini
parents: 47216
diff changeset
   120
        // DocFilesHandler docFilesHandler = configuration.getWriterFactory().getDocFilesWriter(mdle);
e9dab2492924 8185985: Html files in doc-files directories should be wrapped with standard header and footer
ksrini
parents: 47216
diff changeset
   121
        // docFilesHandler.copyDocFiles();
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   122
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   123
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   124
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   125
     * Build the content for the module doc.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   126
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   127
     * @param contentTree the content tree to which the module contents
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   128
     *                    will be added
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
   129
     * @throws DocletException if there is a problem while building the documentation
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   130
     */
45599
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   131
    protected void buildContent(Content contentTree) throws DocletException {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   132
        Content moduleContentTree = moduleWriter.getContentHeader();
45599
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   133
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   134
        buildModuleDescription(moduleContentTree);
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   135
        buildModuleTags(moduleContentTree);
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   136
        buildSummary(moduleContentTree);
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   137
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   138
        moduleWriter.addModuleContent(contentTree, moduleContentTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   139
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   140
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   141
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   142
     * Build the module summary.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   143
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   144
     * @param moduleContentTree the module content tree to which the summaries will
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   145
     *                           be added
40587
1c355ea550ed 8164130: Simplify doclet IOException handling
jjg
parents: 40303
diff changeset
   146
     * @throws DocletException if there is a problem while building the documentation
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   147
     */
45599
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   148
    protected void buildSummary(Content moduleContentTree) throws DocletException {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   149
        Content summaryContentTree = moduleWriter.getSummaryHeader();
45599
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   150
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   151
        buildPackagesSummary(summaryContentTree);
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   152
        buildModulesSummary(summaryContentTree);
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   153
        buildServicesSummary(summaryContentTree);
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   154
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   155
        moduleContentTree.addContent(moduleWriter.getSummaryTree(summaryContentTree));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   156
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   157
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   158
    /**
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   159
     * Build the modules summary.
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   160
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   161
     * @param summaryContentTree the content tree to which the summaries will
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   162
     *                           be added
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   163
     */
45599
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   164
    protected void buildModulesSummary(Content summaryContentTree) {
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   165
        moduleWriter.addModulesSummary(summaryContentTree);
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   166
    }
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   167
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   168
    /**
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   169
     * Build the package summary.
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   170
     *
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   171
     * @param summaryContentTree the content tree to which the summaries will be added
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   172
     */
45599
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   173
    protected void buildPackagesSummary(Content summaryContentTree) {
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   174
        moduleWriter.addPackagesSummary(summaryContentTree);
45599
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   175
    }
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   176
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   177
    /**
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   178
     * Build the services summary.
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   179
     *
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   180
     * @param summaryContentTree the content tree to which the summaries will be added
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   181
     */
45599
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   182
    protected void buildServicesSummary(Content summaryContentTree) {
39670
9d1eafbf29c6 8154261: Module summary page should display directives for the module
bpatel
parents: 38911
diff changeset
   183
        moduleWriter.addServicesSummary(summaryContentTree);
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   184
    }
37747
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   185
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   186
    /**
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   187
     * Build the description for the module.
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   188
     *
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   189
     * @param moduleContentTree the tree to which the module description will
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   190
     *                           be added
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   191
     */
45599
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   192
    protected void buildModuleDescription(Content moduleContentTree) {
37747
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   193
        if (!configuration.nocomment) {
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   194
            moduleWriter.addModuleDescription(moduleContentTree);
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   195
        }
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   196
    }
38911
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   197
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   198
    /**
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   199
     * Build the tags of the summary.
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   200
     *
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   201
     * @param moduleContentTree the tree to which the module tags will be added
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   202
     */
45599
8bc3a019f948 8149146: [javadoc] eliminate doclet.xml
jjg
parents: 40605
diff changeset
   203
    protected void buildModuleTags(Content moduleContentTree) {
38911
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   204
        if (!configuration.nocomment) {
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   205
            moduleWriter.addModuleTags(moduleContentTree);
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   206
        }
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   207
    }
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   208
}