langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/builders/ModuleSummaryBuilder.java
author bpatel
Thu, 09 Jun 2016 23:24:05 -0700
changeset 38911 48a00b5ee366
parent 37747 878801512393
child 39670 9d1eafbf29c6
permissions -rw-r--r--
8156077: Support javadoc tags in module documentation Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     2
 * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     4
 *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    10
 *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    15
 * accompanied this code).
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    16
 *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    20
 *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    23
 * questions.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    24
 */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    25
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    26
package jdk.javadoc.internal.doclets.toolkit.builders;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    27
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    28
import java.io.IOException;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    29
import java.util.Set;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    30
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    31
import javax.lang.model.element.ModuleElement;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    32
import javax.lang.model.element.PackageElement;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    33
import javax.tools.StandardLocation;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    34
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    35
import jdk.javadoc.internal.doclets.toolkit.Content;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    36
import jdk.javadoc.internal.doclets.toolkit.ModuleSummaryWriter;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    37
import jdk.javadoc.internal.doclets.toolkit.util.DocPaths;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    38
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    39
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    40
/**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    41
 * Builds the summary for a given module.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    42
 *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    43
 *  <p><b>This is NOT part of any supported API.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    44
 *  If you write code that depends on this, you do so at your own risk.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    45
 *  This code and its internal interfaces are subject to change or
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    46
 *  deletion without notice.</b>
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    47
 *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    48
 * @author Bhavesh Patel
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    49
 */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    50
public class ModuleSummaryBuilder extends AbstractBuilder {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    51
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    52
     * The root element of the module summary XML is {@value}.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    53
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    54
    public static final String ROOT = "ModuleDoc";
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    55
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    56
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    57
     * The module being documented.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    58
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    59
    private final ModuleElement mdle;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    60
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    61
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    62
     * The doclet specific writer that will output the result.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    63
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    64
    private final ModuleSummaryWriter moduleWriter;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    65
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    66
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    67
     * The content that will be added to the module summary documentation tree.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    68
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    69
    private Content contentTree;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    70
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    71
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    72
     * The module package being documented.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    73
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    74
    private PackageElement pkg;
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
     * Construct a new ModuleSummaryBuilder.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    78
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    79
     * @param context  the build context.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    80
     * @param mdle the module being documented.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    81
     * @param moduleWriter the doclet specific writer that will output the
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    82
     *        result.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    83
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    84
    private ModuleSummaryBuilder(Context context,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    85
            ModuleElement mdle, ModuleSummaryWriter moduleWriter) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    86
        super(context);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    87
        this.mdle = mdle;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    88
        this.moduleWriter = moduleWriter;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    89
    }
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
     * Construct a new ModuleSummaryBuilder.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    93
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    94
     * @param context  the build context.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    95
     * @param mdle the module being documented.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    96
     * @param moduleWriter the doclet specific writer that will output the
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    97
     *        result.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    98
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
    99
     * @return an instance of a ModuleSummaryBuilder.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   100
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   101
    public static ModuleSummaryBuilder getInstance(Context context,
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   102
            ModuleElement mdle, ModuleSummaryWriter moduleWriter) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   103
        return new ModuleSummaryBuilder(context, mdle, moduleWriter);
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 summary.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   108
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   109
    public void build() throws IOException {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   110
        if (moduleWriter == null) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   111
            //Doclet does not support this output.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   112
            return;
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   113
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   114
        build(layoutParser.parseXML(ROOT), contentTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   115
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   116
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   117
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   118
     * {@inheritDoc}
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   119
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   120
    public String getName() {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   121
        return ROOT;
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 module documentation.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   126
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   127
     * @param node the XML element that specifies which components to document
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   128
     * @param contentTree the content tree to which the documentation will be added
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   129
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   130
    public void buildModuleDoc(XMLNode node, Content contentTree) throws Exception {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   131
        contentTree = moduleWriter.getModuleHeader(mdle.getSimpleName().toString());
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   132
        buildChildren(node, contentTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   133
        moduleWriter.addModuleFooter(contentTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   134
        moduleWriter.printDocument(contentTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   135
        moduleWriter.close();
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   136
        // TEMPORARY:
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   137
        // The use of SOURCE_PATH on the next line is temporary. As we transition into the
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   138
        // modules world, this should migrate into using a location for the appropriate module
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   139
        // on the MODULE_SOURCE_PATH, or (in the old doclet) simply deleted.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   140
        utils.copyDocFiles(configuration, StandardLocation.SOURCE_PATH, DocPaths.moduleSummary(mdle));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   141
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   142
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   143
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   144
     * Build the content for the module doc.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   145
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   146
     * @param node the XML element that specifies which components to document
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   147
     * @param contentTree the content tree to which the module contents
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   148
     *                    will be added
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   149
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   150
    public void buildContent(XMLNode node, Content contentTree) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   151
        Content moduleContentTree = moduleWriter.getContentHeader();
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   152
        buildChildren(node, moduleContentTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   153
        moduleWriter.addModuleContent(contentTree, moduleContentTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   154
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   155
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   156
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   157
     * Build the module summary.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   158
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   159
     * @param node the XML element that specifies which components to document
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   160
     * @param moduleContentTree the module content tree to which the summaries will
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   161
     *                           be added
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   162
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   163
    public void buildSummary(XMLNode node, Content moduleContentTree) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   164
        Content summaryContentTree = moduleWriter.getSummaryHeader();
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   165
        buildChildren(node, summaryContentTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   166
        moduleContentTree.addContent(moduleWriter.getSummaryTree(summaryContentTree));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   167
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   168
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   169
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   170
     * Build the module package summary.
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   171
     *
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   172
     * @param node the XML element that specifies which components to document
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   173
     * @param summaryContentTree the content tree to which the summaries will
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   174
     *                           be added
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   175
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   176
    public void buildPackageSummary(XMLNode node, Content summaryContentTree) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   177
        Set<PackageElement> packages = configuration.modulePackages.get(mdle);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   178
        if (!packages.isEmpty()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   179
            String packageTableSummary
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   180
                    = configuration.getText("doclet.Member_Table_Summary",
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   181
                            configuration.getText("doclet.Package_Summary"),
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   182
                            configuration.getText("doclet.packages"));
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   183
            moduleWriter.addPackagesSummary(
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   184
                    packages, configuration.getText("doclet.Package_Summary"),
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   185
                    packageTableSummary, summaryContentTree);
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   186
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   187
    }
37747
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
    /**
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   190
     * Build the description for the module.
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   191
     *
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   192
     * @param node the XML element that specifies which components to document
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   193
     * @param moduleContentTree the tree to which the module description will
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   194
     *                           be added
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
    public void buildModuleDescription(XMLNode node, Content moduleContentTree) {
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   197
        if (!configuration.nocomment) {
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   198
            moduleWriter.addModuleDescription(moduleContentTree);
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   199
        }
878801512393 8154119: Module summary page should display module description
bpatel
parents: 36526
diff changeset
   200
    }
38911
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   201
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   202
    /**
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   203
     * Build the tags of the summary.
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   204
     *
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   205
     * @param node the XML element that specifies which components to document
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   206
     * @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
   207
     */
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   208
    public void buildModuleTags(XMLNode node, Content moduleContentTree) {
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   209
        if (!configuration.nocomment) {
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   210
            moduleWriter.addModuleTags(moduleContentTree);
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   211
        }
48a00b5ee366 8156077: Support javadoc tags in module documentation
bpatel
parents: 37747
diff changeset
   212
    }
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents:
diff changeset
   213
}