langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/HtmlDoclet.java
author ksrini
Sun, 10 Apr 2016 08:41:00 -0700
changeset 37009 476d8d615222
parent 36526 3b41f1c69604
child 39364 bd6d4a7936b4
permissions -rw-r--r--
8073100: [javadoc] Provide an ability to suppress document generation for specific elements. Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
     2
 * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1652
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1652
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1652
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1652
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1652
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
34752
9c262a013456 8145342: Some copyright notices are inconsistently and ill formatted
vasya
parents: 33920
diff changeset
    25
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    26
package jdk.javadoc.internal.doclets.formats.html;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 9894
diff changeset
    28
import java.io.*;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 9894
diff changeset
    29
import java.util.*;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 9894
diff changeset
    30
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
    31
import javax.lang.model.element.ModuleElement;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    32
import javax.lang.model.element.PackageElement;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    33
import javax.lang.model.element.TypeElement;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    34
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
    35
import com.sun.javadoc.PackageDoc;
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    36
import jdk.javadoc.doclet.Doclet.Option;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    37
import jdk.javadoc.doclet.DocletEnvironment;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    38
import jdk.javadoc.doclet.Reporter;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    39
import jdk.javadoc.internal.doclets.toolkit.AbstractDoclet;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    40
import jdk.javadoc.internal.doclets.toolkit.Configuration;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    41
import jdk.javadoc.internal.doclets.toolkit.builders.AbstractBuilder;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    42
import jdk.javadoc.internal.doclets.toolkit.util.ClassTree;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    43
import jdk.javadoc.internal.doclets.toolkit.util.DocFile;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    44
import jdk.javadoc.internal.doclets.toolkit.util.DocPath;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    45
import jdk.javadoc.internal.doclets.toolkit.util.DocPaths;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    46
import jdk.javadoc.internal.doclets.toolkit.util.DocletAbortException;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    47
import jdk.javadoc.internal.doclets.toolkit.util.IndexBuilder;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
 * The class with "start" method, calls individual Writers.
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
 *
14260
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    52
 *  <p><b>This is NOT part of any supported API.
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    53
 *  If you write code that depends on this, you do so at your own risk.
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    54
 *  This code and its internal interfaces are subject to change or
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    55
 *  deletion without notice.</b>
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    56
 *
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
 * @author Atul M Dambalkar
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
 * @author Robert Field
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
 * @author Jamie Ho
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
public class HtmlDoclet extends AbstractDoclet {
14542
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
    63
1475
19c0851667ca 6748541: javadoc should be reusable
jjg
parents: 10
diff changeset
    64
    public HtmlDoclet() {
14542
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
    65
        configuration = new ConfigurationImpl();
1475
19c0851667ca 6748541: javadoc should be reusable
jjg
parents: 10
diff changeset
    66
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
     * The global configuration information for this run.
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
     */
14542
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
    71
    public final ConfigurationImpl configuration;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    73
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    74
    private static final DocPath DOCLET_RESOURCES = DocPath
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    75
            .create("/jdk/javadoc/internal/doclets/formats/html/resources");
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    76
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    77
    public void init(Locale locale, Reporter reporter) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    78
        configuration.reporter = reporter;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    79
        configuration.locale = locale;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    80
    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    81
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
     * The "start" method as required by Javadoc.
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
     * @param root the root of the documentation tree.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    86
     * @see jdk.doclet.DocletEnvironment
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
     * @return true if the doclet ran without encountering any errors.
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    89
    public boolean run(DocletEnvironment root) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
    90
        return startDoclet(root);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
     * Create the configuration instance.
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
     * Override this method to use a different
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
     * configuration.
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    public Configuration configuration() {
14542
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
    99
        return configuration;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
     * Start the generation of files. Call generate methods in the individual
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
     * writers, which will in turn genrate the documentation files. Call the
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
     * TreeWriter generation first to ensure the Class Hierarchy is built
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
     * first and then can be used in the later generation.
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
     * For new format.
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
     *
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   110
     * @see jdk.doclet.RootDoc
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   112
    protected void generateOtherFiles(DocletEnvironment root, ClassTree classtree)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
            throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
        super.generateOtherFiles(root, classtree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
        if (configuration.linksource) {
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14260
diff changeset
   116
            SourceToHTMLConverter.convertRoot(configuration,
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14260
diff changeset
   117
                root, DocPaths.SOURCE_OUTPUT);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14260
diff changeset
   120
        if (configuration.topFile.isEmpty()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
            configuration.standardmessage.
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
                error("doclet.No_Non_Deprecated_Classes_To_Document");
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
        boolean nodeprecated = configuration.nodeprecated;
14368
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
   126
        performCopy(configuration.helpfile);
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
   127
        performCopy(configuration.stylesheetfile);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
        // do early to reduce memory footprint
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
        if (configuration.classuse) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
            ClassUseWriter.generate(configuration, classtree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
        IndexBuilder indexbuilder = new IndexBuilder(configuration, nodeprecated);
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
        if (configuration.createtree) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
            TreeWriter.generate(configuration, classtree);
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
        if (configuration.createindex) {
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   138
            configuration.buildSearchTagIndex();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
            if (configuration.splitindex) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
                SplitIndexWriter.generate(configuration, indexbuilder);
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
                SingleIndexWriter.generate(configuration, indexbuilder);
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
        if (!(configuration.nodeprecatedlist || nodeprecated)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
            DeprecatedListWriter.generate(configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
        AllClassesFrameWriter.generate(configuration,
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
            new IndexBuilder(configuration, nodeprecated, true));
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
        FrameOutputWriter.generate(configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
        if (configuration.createoverview) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
            PackageIndexWriter.generate(configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
        if (configuration.helpfile.length() == 0 &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
            !configuration.nohelp) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
            HelpWriter.generate(configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
        }
7641
8b552db25f99 7006270: Several javadoc regression tests are failing on windows
bpatel
parents: 7614
diff changeset
   162
        // If a stylesheet file is not specified, copy the default stylesheet
8b552db25f99 7006270: Several javadoc regression tests are failing on windows
bpatel
parents: 7614
diff changeset
   163
        // and replace newline with platform-specific newline.
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 14542
diff changeset
   164
        DocFile f;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
        if (configuration.stylesheetfile.length() == 0) {
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 14542
diff changeset
   166
            f = DocFile.createFileForOutput(configuration, DocPaths.STYLESHEET);
14368
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
   167
            f.copyResource(DocPaths.RESOURCES.resolve(DocPaths.STYLESHEET), false, true);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
        }
14549
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 14542
diff changeset
   169
        f = DocFile.createFileForOutput(configuration, DocPaths.JAVASCRIPT);
0599d73bf1da 8002304: Group methods by types in methods summary section
bpatel
parents: 14542
diff changeset
   170
        f.copyResource(DocPaths.RESOURCES.resolve(DocPaths.JAVASCRIPT), true, true);
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   171
        if (configuration.createindex) {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   172
            f = DocFile.createFileForOutput(configuration, DocPaths.SEARCH_JS);
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   173
            f.copyResource(DOCLET_RESOURCES.resolve(DocPaths.SEARCH_JS), true, true);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   174
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   175
            f = DocFile.createFileForOutput(configuration, DocPaths.RESOURCES.resolve(DocPaths.GLASS_IMG));
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   176
            f.copyResource(DOCLET_RESOURCES.resolve(DocPaths.GLASS_IMG), true, false);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   177
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   178
            f = DocFile.createFileForOutput(configuration, DocPaths.RESOURCES.resolve(DocPaths.X_IMG));
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   179
            f.copyResource(DOCLET_RESOURCES.resolve(DocPaths.X_IMG), true, false);
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   180
            copyJqueryFiles();
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   181
        }
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   182
    }
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   183
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   184
    protected void copyJqueryFiles() {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   185
        List<String> files = Arrays.asList(
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   186
                "jquery-1.10.2.js",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   187
                "jquery-ui.js",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   188
                "jquery-ui.css",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   189
                "jquery-ui.min.js",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   190
                "jquery-ui.min.css",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   191
                "jquery-ui.structure.min.css",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   192
                "jquery-ui.structure.css",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   193
                "external/jquery/jquery.js",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   194
                "jszip/dist/jszip.js",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   195
                "jszip/dist/jszip.min.js",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   196
                "jszip-utils/dist/jszip-utils.js",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   197
                "jszip-utils/dist/jszip-utils.min.js",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   198
                "jszip-utils/dist/jszip-utils-ie.js",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   199
                "jszip-utils/dist/jszip-utils-ie.min.js",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   200
                "images/ui-bg_flat_0_aaaaaa_40x100.png",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   201
                "images/ui-icons_454545_256x240.png",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   202
                "images/ui-bg_glass_95_fef1ec_1x400.png",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   203
                "images/ui-bg_glass_75_dadada_1x400.png",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   204
                "images/ui-bg_highlight-soft_75_cccccc_1x100.png",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   205
                "images/ui-icons_888888_256x240.png",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   206
                "images/ui-icons_2e83ff_256x240.png",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   207
                "images/ui-bg_glass_65_ffffff_1x400.png",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   208
                "images/ui-icons_cd0a0a_256x240.png",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   209
                "images/ui-bg_glass_55_fbf9ee_1x400.png",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   210
                "images/ui-icons_222222_256x240.png",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   211
                "images/ui-bg_glass_75_e6e6e6_1x400.png",
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   212
                "images/ui-bg_flat_75_ffffff_40x100.png");
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   213
        DocFile f;
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   214
        for (String file : files) {
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   215
            DocPath filePath = DocPaths.JQUERY_FILES.resolve(file);
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   216
            f = DocFile.createFileForOutput(configuration, filePath);
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   217
            f.copyResource(DOCLET_RESOURCES.resolve(filePath), true, false);
33920
bd731341c405 8141492: Implement search feature in javadoc
bpatel
parents: 26269
diff changeset
   218
        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
     */
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   224
    protected void generateClassFiles(SortedSet<TypeElement> arr, ClassTree classtree) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   225
        List<TypeElement> list = new ArrayList<>(arr);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   226
        ListIterator<TypeElement> iterator = list.listIterator();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   227
        TypeElement klass = null;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   228
        while (iterator.hasNext()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   229
            TypeElement prev = iterator.hasPrevious() ? klass : null;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   230
            klass = iterator.next();
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   231
            TypeElement next = iterator.nextIndex() == list.size()
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   232
                    ? null : list.get(iterator.nextIndex());
37009
476d8d615222 8073100: [javadoc] Provide an ability to suppress document generation for specific elements.
ksrini
parents: 36526
diff changeset
   233
            if (utils.isHidden(klass) ||
476d8d615222 8073100: [javadoc] Provide an ability to suppress document generation for specific elements.
ksrini
parents: 36526
diff changeset
   234
                    !(configuration.isGeneratedDoc(klass) && utils.isIncluded(klass))) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
                continue;
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
            try {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   238
                if (utils.isAnnotationType(klass)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
                    AbstractBuilder annotationTypeBuilder =
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
                        configuration.getBuilderFactory()
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   241
                            .getAnnotationTypeBuilder(klass,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   242
                                prev == null ? null : prev.asType(),
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   243
                                next == null ? null : next.asType());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
                    annotationTypeBuilder.build();
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
                } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
                    AbstractBuilder classBuilder =
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   247
                        configuration.getBuilderFactory().getClassBuilder(klass,
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   248
                                prev, next, classtree);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
                    classBuilder.build();
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
                }
20600
052970964bc1 6978886: javadoc shows stacktrace after print error resulting from disk full
kizune
parents: 19937
diff changeset
   251
            } catch (IOException e) {
052970964bc1 6978886: javadoc shows stacktrace after print error resulting from disk full
kizune
parents: 19937
diff changeset
   252
                throw new DocletAbortException(e);
052970964bc1 6978886: javadoc shows stacktrace after print error resulting from disk full
kizune
parents: 19937
diff changeset
   253
            } catch (DocletAbortException de) {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   254
                de.printStackTrace();
20600
052970964bc1 6978886: javadoc shows stacktrace after print error resulting from disk full
kizune
parents: 19937
diff changeset
   255
                throw de;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
            } catch (Exception e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
                e.printStackTrace();
19667
fdfce85627a9 8001669: javadoc internal DocletAbortException should set cause when appropriate
jjg
parents: 15723
diff changeset
   258
                throw new DocletAbortException(e);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   263
    /**
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   264
     * {@inheritDoc}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   265
     */
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   266
    protected void generateModuleFiles() throws Exception {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   267
        if (configuration.showModules) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   268
            ModuleIndexFrameWriter.generate(configuration);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   269
            ModuleElement prevModule = null, nextModule;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   270
            List<ModuleElement> mdles = new ArrayList<>(configuration.modulePackages.keySet());
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   271
            int i = 0;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   272
            for (ModuleElement mdle : mdles) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   273
                ModulePackageIndexFrameWriter.generate(configuration, mdle);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   274
                nextModule = (i + 1 < mdles.size()) ? mdles.get(i + 1) : null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   275
                AbstractBuilder moduleSummaryBuilder =
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   276
                        configuration.getBuilderFactory().getModuleSummaryBuilder(
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   277
                        mdle, prevModule, nextModule);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   278
                moduleSummaryBuilder.build();
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   279
                prevModule = mdle;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   280
                i++;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   281
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   282
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   283
    }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   284
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   285
    PackageElement getNamedPackage(List<PackageElement> list, int idx) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   286
        if (idx < list.size()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   287
            PackageElement pkg = list.get(idx);
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   288
            if (pkg != null && !pkg.isUnnamed()) {
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   289
                return pkg;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   290
            }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   291
        }
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   292
        return null;
3b41f1c69604 8142968: Module System implementation
alanb
parents: 35426
diff changeset
   293
    }
24221
2376793dd33b 8038583: [javadoc] Refactor uses of arrays to Collections
ksrini
parents: 22447
diff changeset
   294
15723
58a73dac9ee4 8006124: javadoc/doclet should be updated to support profiles
bpatel
parents: 14549
diff changeset
   295
    /**
58a73dac9ee4 8006124: javadoc/doclet should be updated to support profiles
bpatel
parents: 14549
diff changeset
   296
     * {@inheritDoc}
58a73dac9ee4 8006124: javadoc/doclet should be updated to support profiles
bpatel
parents: 14549
diff changeset
   297
     */
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
    protected void generatePackageFiles(ClassTree classtree) throws Exception {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   299
        Set<PackageElement> packages = configuration.packages;
24221
2376793dd33b 8038583: [javadoc] Refactor uses of arrays to Collections
ksrini
parents: 22447
diff changeset
   300
        if (packages.size() > 1) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
            PackageIndexFrameWriter.generate(configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
        }
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   303
        List<PackageElement> pList = new ArrayList<>(packages);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   304
        PackageElement prev = null;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   305
        for (int i = 0 ; i < pList.size() ; i++) {
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 7681
diff changeset
   306
            // if -nodeprecated option is set and the package is marked as
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 7681
diff changeset
   307
            // deprecated, do not generate the package-summary.html, package-frame.html
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 7681
diff changeset
   308
            // and package-tree.html pages for that package.
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   309
            PackageElement pkg = pList.get(i);
25454
376a52c9540c 8039028: [javadoc] refactor the usage of Util.java
ksrini
parents: 24221
diff changeset
   310
            if (!(configuration.nodeprecated && utils.isDeprecated(pkg))) {
24221
2376793dd33b 8038583: [javadoc] Refactor uses of arrays to Collections
ksrini
parents: 22447
diff changeset
   311
                PackageFrameWriter.generate(configuration, pkg);
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   312
                int nexti = i + 1;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   313
                PackageElement next = null;
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   314
                if (nexti < pList.size()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   315
                    next = pList.get(nexti);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   316
                    // If the next package is unnamed package, skip 2 ahead if possible
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   317
                    if (next.isUnnamed() && ++nexti < pList.size()) {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   318
                       next = pList.get(nexti);
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   319
                    }
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   320
                }
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 7681
diff changeset
   321
                AbstractBuilder packageSummaryBuilder =
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 7681
diff changeset
   322
                        configuration.getBuilderFactory().getPackageSummaryBuilder(
24221
2376793dd33b 8038583: [javadoc] Refactor uses of arrays to Collections
ksrini
parents: 22447
diff changeset
   323
                        pkg, prev, next);
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 7681
diff changeset
   324
                packageSummaryBuilder.build();
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 7681
diff changeset
   325
                if (configuration.createtree) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   326
                    PackageTreeWriter.generate(configuration, pkg, prev, next,
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 7681
diff changeset
   327
                            configuration.nodeprecated);
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 7681
diff changeset
   328
                }
24221
2376793dd33b 8038583: [javadoc] Refactor uses of arrays to Collections
ksrini
parents: 22447
diff changeset
   329
                prev = pkg;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   334
    public Set<Option> getSupportedOptions() {
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   335
        return configuration.getSupportedOptions();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   337
14368
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
   338
    private void performCopy(String filename) {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
   339
        if (filename.isEmpty())
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
   340
            return;
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
   341
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
        try {
14368
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
   343
            DocFile fromfile = DocFile.createFileForInput(configuration, filename);
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
   344
            DocPath path = DocPath.create(fromfile.getName());
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
   345
            DocFile toFile = DocFile.createFileForOutput(configuration, path);
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
   346
            if (toFile.isSameFile(fromfile))
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
   347
                return;
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
   348
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   349
            configuration.message.notice("doclet.Copying_File_0_To_File_1",
14368
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
   350
                    fromfile.toString(), path.getPath());
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14357
diff changeset
   351
            toFile.copyFile(fromfile);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
        } catch (IOException exc) {
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34752
diff changeset
   353
            configuration.message.error("doclet.perform_copy_exception_encountered",
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
                    exc.toString());
19667
fdfce85627a9 8001669: javadoc internal DocletAbortException should set cause when appropriate
jjg
parents: 15723
diff changeset
   355
            throw new DocletAbortException(exc);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
}