langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/Configuration.java
author jjg
Thu, 15 Nov 2012 09:18:36 -0800
changeset 14542 7062120649c2
parent 14368 6f4c62de6985
child 14544 d71d992cb905
permissions -rw-r--r--
8000800: javadoc uses static non-final fields Reviewed-by: bpatel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9606
diff changeset
     2
 * Copyright (c) 1997, 2012, 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: 2212
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: 2212
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: 2212
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2212
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2212
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package com.sun.tools.doclets.internal.toolkit;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14061
diff changeset
    28
import java.io.*;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14061
diff changeset
    29
import java.util.*;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14061
diff changeset
    30
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14061
diff changeset
    31
import com.sun.javadoc.*;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 14061
diff changeset
    32
import com.sun.tools.doclets.internal.toolkit.builders.BuilderFactory;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import com.sun.tools.doclets.internal.toolkit.taglets.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import com.sun.tools.doclets.internal.toolkit.util.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
 * Configure the output based on the options. Doclets should sub-class
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 * Configuration, to configure and add their own options. This class contains
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
 * all user options which are supported by the 1.1 doclet and the standard
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
 * doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 *
14260
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    42
 *  <p><b>This is NOT part of any supported API.
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14258
diff changeset
    43
 *  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
    44
 *  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
    45
 *  deletion without notice.</b>
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
 * @author Robert Field.
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
 * @author Atul Dambalkar.
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
 * @author Jamie Ho
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
public abstract class Configuration {
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
     * The factory for builders.
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
    protected BuilderFactory builderFactory;
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
     * The taglet manager.
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
    public TagletManager tagletManager;
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
     * The path to the builder XML input file.
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
    public String builderXMLPath;
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 default path to the builder XML.
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
    private static final String DEFAULT_BUILDER_XML = "resources/doclet.xml";
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
     * The path to Taglets
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
    public String tagletpath = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
     * This is true if option "-serialwarn" is used. Defualt value is false to
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
     * supress excessive warnings about serial tag.
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
    public boolean serialwarn = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
     * The specified amount of space between tab stops.
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
     */
14542
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
    87
    public int sourcetab;
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
    88
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
    89
    public String tabSpaces;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
     * True if we should generate browsable sources.
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
    public boolean linksource = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
     * True if command line option "-nosince" is used. Default value is
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
     * false.
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
    public boolean nosince = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
     * True if we should recursively copy the doc-file subdirectories
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
    public boolean copydocfilesubdirs = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
     * The META charset tag used for cross-platform viewing.
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
    public String charset = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
     * True if user wants to add member names as meta keywords.
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
     * Set to false because meta keywords are ignored in general
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
     * by most Internet search engines.
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
    public boolean keywords = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
    /**
1475
19c0851667ca 6748541: javadoc should be reusable
jjg
parents: 1264
diff changeset
   120
     * The meta tag keywords instance.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
     */
1475
19c0851667ca 6748541: javadoc should be reusable
jjg
parents: 1264
diff changeset
   122
    public final MetaKeywords metakeywords = new MetaKeywords(this);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
     * The list of doc-file subdirectories to exclude
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   127
    protected Set<String> excludedDocFileDirs;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
     * The list of qualifiers to exclude
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   132
    protected Set<String> excludedQualifiers;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
     * The Root of the generated Program Structure from the Doclet API.
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
    public RootDoc root;
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
     * Destination directory name, in which doclet will generate the entire
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
     * documentation. Default is current directory.
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
    public String destDirName = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
     * Destination directory name, in which doclet will copy the doc-files to.
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
    public String docFileDestDirName = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
     * Encoding for this document. Default is default encoding for this
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
     * platform.
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
    public String docencoding = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
     * True if user wants to suppress descriptions and tags.
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
    public boolean nocomment = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
     * Encoding for this document. Default is default encoding for this
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
     * platform.
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
    public String encoding = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
     * Generate author specific information for all the classes if @author
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
     * tag is used in the doc comment and if -author option is used.
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
     * <code>showauthor</code> is set to true if -author option is used.
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
     * Default is don't show author information.
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
    public boolean showauthor = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
     * Generate version specific information for the all the classes
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
     * if @version tag is used in the doc comment and if -version option is
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
     * used. <code>showversion</code> is set to true if -version option is
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
     * used.Default is don't show version information.
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
    public boolean showversion = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
     * Sourcepath from where to read the source files. Default is classpath.
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
    public String sourcepath = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
     * Don't generate deprecated API information at all, if -nodeprecated
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
     * option is used. <code>nodepracted</code> is set to true if
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
     * -nodeprecated option is used. Default is generate deprected API
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
     * information.
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
    public boolean nodeprecated = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
     * The catalog of classes specified on the command-line
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
    public ClassDocCatalog classDocCatalog;
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
     * Message Retriever for the doclet, to retrieve message from the resource
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
     * file for this Configuration, which is common for 1.1 and standard
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
     * doclets.
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
     * TODO:  Make this private!!!
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
    public MessageRetriever message = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
     * True if user wants to suppress time stamp in output.
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
     * Default is false.
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
    public boolean notimestamp= false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
    /**
1475
19c0851667ca 6748541: javadoc should be reusable
jjg
parents: 1264
diff changeset
   218
     * The package grouping instance.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
     */
1475
19c0851667ca 6748541: javadoc should be reusable
jjg
parents: 1264
diff changeset
   220
    public final Group group = new Group(this);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
    /**
1475
19c0851667ca 6748541: javadoc should be reusable
jjg
parents: 1264
diff changeset
   223
     * The tracker of external package links.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
    public final Extern extern = new Extern(this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
     * Return the build date for the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
    public abstract String getDocletSpecificBuildDate();
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
     * This method should be defined in all those doclets(configurations),
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
     * which want to derive themselves from this Configuration. This method
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
     * can be used to set its own command line options.
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
     * @param options The array of option names and values.
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
     * @throws DocletAbortException
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
    public abstract void setSpecificDocletOptions(String[][] options);
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
     * Return the doclet specific {@link MessageRetriever}
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
     * @return the doclet specific MessageRetriever.
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
    public abstract MessageRetriever getDocletSpecificMsg();
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
     * An array of the packages specified on the command-line merged
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
     * with the array of packages that contain the classes specified on the
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
     * command-line.  The array is sorted.
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
    public PackageDoc[] packages;
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
     * Constructor. Constructs the message retriever with resource file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
    public Configuration() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
        message =
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
            new MessageRetriever(this,
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
            "com.sun.tools.doclets.internal.toolkit.resources.doclets");
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   262
        excludedDocFileDirs = new HashSet<String>();
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   263
        excludedQualifiers = new HashSet<String>();
14542
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
   264
        setTabWidth(DocletConstants.DEFAULT_TAB_STOP_LENGTH);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
     * Return the builder factory for this doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
     * @return the builder factory for this doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
    public BuilderFactory getBuilderFactory() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
        if (builderFactory == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
            builderFactory = new BuilderFactory(this);
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
        return builderFactory;
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
     * This method should be defined in all those doclets
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
     * which want to inherit from this Configuration. This method
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
     * should return the number of arguments to the command line
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
     * option (including the option name).  For example,
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
     * -notimestamp is a single-argument option, so this method would
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
     * return 1.
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
     * @param option Command line option under consideration.
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
     * @return number of arguments to option (including the
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
     * option name). Zero return means option not known.
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
     * Negative value means error occurred.
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
    public int optionLength(String option) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
        option = option.toLowerCase();
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
        if (option.equals("-author") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
            option.equals("-docfilessubdirs") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
            option.equals("-keywords") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
            option.equals("-linksource") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
            option.equals("-nocomment") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
            option.equals("-nodeprecated") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
            option.equals("-nosince") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
            option.equals("-notimestamp") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
            option.equals("-quiet") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
            option.equals("-xnodate") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
            option.equals("-version")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
            return 1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
        } else if (option.equals("-d") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
                   option.equals("-docencoding") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
                   option.equals("-encoding") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
                   option.equals("-excludedocfilessubdir") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
                   option.equals("-link") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
                   option.equals("-sourcetab") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
                   option.equals("-noqualifier") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
                   option.equals("-output") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
                   option.equals("-sourcepath") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
                   option.equals("-tag") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
                   option.equals("-taglet") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
                   option.equals("-tagletpath")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
            return 2;
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
        } else if (option.equals("-group") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
                   option.equals("-linkoffline")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
            return 3;
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
            return -1;  // indicate we don't know about it
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
     * Perform error checking on the given options.
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
     * @param options  the given options to check.
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
     * @param reporter the reporter used to report errors.
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
    public abstract boolean validOptions(String options[][],
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
        DocErrorReporter reporter);
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
    private void initPackageArray() {
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   337
        Set<PackageDoc> set = new HashSet<PackageDoc>(Arrays.asList(root.specifiedPackages()));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
        ClassDoc[] classes = root.specifiedClasses();
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
        for (int i = 0; i < classes.length; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
            set.add(classes[i].containingPackage());
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
        }
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   342
        ArrayList<PackageDoc> results = new ArrayList<PackageDoc>(set);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
        Collections.sort(results);
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   344
        packages = results.toArray(new PackageDoc[] {});
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   346
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
     * Set the command line options supported by this configuration.
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
     * @param options the two dimensional array of options.
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
    public void setOptions(String[][] options) {
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   353
        LinkedHashSet<String[]> customTagStrs = new LinkedHashSet<String[]>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
        for (int oi = 0; oi < options.length; ++oi) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
            String[] os = options[oi];
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
            String opt = os[0].toLowerCase();
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
            if (opt.equals("-d")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
                destDirName = addTrailingFileSep(os[1]);
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
                docFileDestDirName = destDirName;
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9606
diff changeset
   360
            } else if (opt.equals("-docfilessubdirs")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
                copydocfilesubdirs = true;
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9606
diff changeset
   362
            } else if (opt.equals("-docencoding")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
                docencoding = os[1];
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9606
diff changeset
   364
            } else if (opt.equals("-encoding")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
                encoding = os[1];
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9606
diff changeset
   366
            } else if (opt.equals("-author")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
                showauthor = true;
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9606
diff changeset
   368
            } else if (opt.equals("-nosince")) {
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9606
diff changeset
   369
                nosince = true;
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9606
diff changeset
   370
            } else if (opt.equals("-version")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
                showversion = true;
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9606
diff changeset
   372
            } else if (opt.equals("-nodeprecated")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
                nodeprecated = true;
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9606
diff changeset
   374
            } else if (opt.equals("-sourcepath")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
                sourcepath = os[1];
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
            } else if (opt.equals("-classpath") &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
                       sourcepath.length() == 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   378
                sourcepath = os[1];
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
            } else if (opt.equals("-excludedocfilessubdir")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
                addToSet(excludedDocFileDirs, os[1]);
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
            } else if (opt.equals("-noqualifier")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
                addToSet(excludedQualifiers, os[1]);
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
            } else if (opt.equals("-linksource")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
                linksource = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
            } else if (opt.equals("-sourcetab")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
                linksource = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   387
                try {
14542
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
   388
                    setTabWidth(Integer.parseInt(os[1]));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
                } catch (NumberFormatException e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
                    //Set to -1 so that warning will be printed
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
                    //to indicate what is valid argument.
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
                    sourcetab = -1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
                if (sourcetab <= 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   395
                    message.warning("doclet.sourcetab_warning");
14542
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
   396
                    setTabWidth(DocletConstants.DEFAULT_TAB_STOP_LENGTH);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   397
                }
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9606
diff changeset
   398
            } else if (opt.equals("-notimestamp")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   399
                notimestamp = true;
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9606
diff changeset
   400
            } else if (opt.equals("-nocomment")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   401
                nocomment = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
            } else if (opt.equals("-tag") || opt.equals("-taglet")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
                customTagStrs.add(os);
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
            } else if (opt.equals("-tagletpath")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
                tagletpath = os[1];
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9606
diff changeset
   406
            } else if (opt.equals("-keywords")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
                keywords = true;
13842
6908f6badce4 7180906: Javadoc tool does not apply parameter -nosince
bpatel
parents: 9606
diff changeset
   408
            } else if (opt.equals("-serialwarn")) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
                serialwarn = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
            } else if (opt.equals("-group")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
                group.checkPackageGroups(os[1], os[2]);
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
            } else if (opt.equals("-link")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
                String url = os[1];
14361
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14263
diff changeset
   414
                extern.link(url, url, root, false);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
            } else if (opt.equals("-linkoffline")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
                String url = os[1];
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
                String pkglisturl = os[2];
14361
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14263
diff changeset
   418
                extern.link(url, pkglisturl, root, true);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   421
        if (sourcepath.length() == 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
            sourcepath = System.getProperty("env.class.path") == null ? "" :
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
                System.getProperty("env.class.path");
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
        if (docencoding == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
            docencoding = encoding;
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 5520
diff changeset
   429
        classDocCatalog = new ClassDocCatalog(root.specifiedClasses(), this);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
        initTagletManager(customTagStrs);
06bc494ca11e Initial load
duke
parents:
diff changeset
   431
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
     * Set the command line options supported by this configuration.
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
     * @throws DocletAbortException
06bc494ca11e Initial load
duke
parents:
diff changeset
   437
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   438
    public void setOptions() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
        initPackageArray();
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
        setOptions(root.options());
06bc494ca11e Initial load
duke
parents:
diff changeset
   441
        setSpecificDocletOptions(root.options());
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
     * Initialize the taglet manager.  The strings to initialize the simple custom tags should
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
     * be in the following format:  "[tag name]:[location str]:[heading]".
06bc494ca11e Initial load
duke
parents:
diff changeset
   448
     * @param customTagStrs the set two dimentional arrays of strings.  These arrays contain
06bc494ca11e Initial load
duke
parents:
diff changeset
   449
     * either -tag or -taglet arguments.
06bc494ca11e Initial load
duke
parents:
diff changeset
   450
     */
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1475
diff changeset
   451
    private void initTagletManager(Set<String[]> customTagStrs) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
        tagletManager = tagletManager == null ?
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
            new TagletManager(nosince, showversion, showauthor, message) :
06bc494ca11e Initial load
duke
parents:
diff changeset
   454
            tagletManager;
06bc494ca11e Initial load
duke
parents:
diff changeset
   455
        String[] args;
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1475
diff changeset
   456
        for (Iterator<String[]> it = customTagStrs.iterator(); it.hasNext(); ) {
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1475
diff changeset
   457
            args = it.next();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   458
            if (args[0].equals("-taglet")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   459
                tagletManager.addCustomTag(args[1], tagletpath);
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
                continue;
06bc494ca11e Initial load
duke
parents:
diff changeset
   461
            }
14368
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   462
            String[] tokens = tokenize(args[1],
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
                TagletManager.SIMPLE_TAGLET_OPT_SEPERATOR, 3);
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
            if (tokens.length == 1) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
                String tagName = args[1];
06bc494ca11e Initial load
duke
parents:
diff changeset
   466
                if (tagletManager.isKnownCustomTag(tagName)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   467
                    //reorder a standard tag
06bc494ca11e Initial load
duke
parents:
diff changeset
   468
                    tagletManager.addNewSimpleCustomTag(tagName, null, "");
06bc494ca11e Initial load
duke
parents:
diff changeset
   469
                } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   470
                    //Create a simple tag with the heading that has the same name as the tag.
14263
473b1eaede64 8000310: Clean up use of StringBuffer in langtools
jjg
parents: 14260
diff changeset
   471
                    StringBuilder heading = new StringBuilder(tagName + ":");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
                    heading.setCharAt(0, Character.toUpperCase(tagName.charAt(0)));
06bc494ca11e Initial load
duke
parents:
diff changeset
   473
                    tagletManager.addNewSimpleCustomTag(tagName, heading.toString(), "a");
06bc494ca11e Initial load
duke
parents:
diff changeset
   474
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   475
            } else if (tokens.length == 2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
                //Add simple taglet without heading, probably to excluding it in the output.
06bc494ca11e Initial load
duke
parents:
diff changeset
   477
                tagletManager.addNewSimpleCustomTag(tokens[0], tokens[1], "");
06bc494ca11e Initial load
duke
parents:
diff changeset
   478
            } else if (tokens.length >= 3) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   479
                tagletManager.addNewSimpleCustomTag(tokens[0], tokens[2], tokens[1]);
06bc494ca11e Initial load
duke
parents:
diff changeset
   480
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   481
                message.error("doclet.Error_invalid_custom_tag_argument", args[1]);
06bc494ca11e Initial load
duke
parents:
diff changeset
   482
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   485
14368
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   486
    /**
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   487
     * Given a string, return an array of tokens.  The separator can be escaped
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   488
     * with the '\' character.  The '\' character may also be escaped by the
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   489
     * '\' character.
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   490
     *
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   491
     * @param s         the string to tokenize.
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   492
     * @param separator the separator char.
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   493
     * @param maxTokens the maximum number of tokens returned.  If the
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   494
     *                  max is reached, the remaining part of s is appended
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   495
     *                  to the end of the last token.
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   496
     *
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   497
     * @return an array of tokens.
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   498
     */
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   499
    private String[] tokenize(String s, char separator, int maxTokens) {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   500
        List<String> tokens = new ArrayList<String>();
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   501
        StringBuilder  token = new StringBuilder ();
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   502
        boolean prevIsEscapeChar = false;
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   503
        for (int i = 0; i < s.length(); i += Character.charCount(i)) {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   504
            int currentChar = s.codePointAt(i);
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   505
            if (prevIsEscapeChar) {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   506
                // Case 1:  escaped character
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   507
                token.appendCodePoint(currentChar);
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   508
                prevIsEscapeChar = false;
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   509
            } else if (currentChar == separator && tokens.size() < maxTokens-1) {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   510
                // Case 2:  separator
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   511
                tokens.add(token.toString());
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   512
                token = new StringBuilder();
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   513
            } else if (currentChar == '\\') {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   514
                // Case 3:  escape character
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   515
                prevIsEscapeChar = true;
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   516
            } else {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   517
                // Case 4:  regular character
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   518
                token.appendCodePoint(currentChar);
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   519
            }
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   520
        }
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   521
        if (token.length() > 0) {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   522
            tokens.add(token.toString());
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   523
        }
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   524
        return tokens.toArray(new String[] {});
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   525
    }
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   526
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   527
    private void addToSet(Set<String> s, String str){
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   528
        StringTokenizer st = new StringTokenizer(str, ":");
06bc494ca11e Initial load
duke
parents:
diff changeset
   529
        String current;
06bc494ca11e Initial load
duke
parents:
diff changeset
   530
        while(st.hasMoreTokens()){
06bc494ca11e Initial load
duke
parents:
diff changeset
   531
            current = st.nextToken();
06bc494ca11e Initial load
duke
parents:
diff changeset
   532
            s.add(current);
06bc494ca11e Initial load
duke
parents:
diff changeset
   533
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   534
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   535
06bc494ca11e Initial load
duke
parents:
diff changeset
   536
    /**
14061
9ac68cf0048b 4696488: javadoc doesn't handle UNC paths for destination directory
bpatel
parents: 13842
diff changeset
   537
     * Add a trailing file separator, if not found. Remove superfluous
9ac68cf0048b 4696488: javadoc doesn't handle UNC paths for destination directory
bpatel
parents: 13842
diff changeset
   538
     * file separators if any. Preserve the front double file separator for
9ac68cf0048b 4696488: javadoc doesn't handle UNC paths for destination directory
bpatel
parents: 13842
diff changeset
   539
     * UNC paths.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   540
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   541
     * @param path Path under consideration.
06bc494ca11e Initial load
duke
parents:
diff changeset
   542
     * @return String Properly constructed path string.
06bc494ca11e Initial load
duke
parents:
diff changeset
   543
     */
14061
9ac68cf0048b 4696488: javadoc doesn't handle UNC paths for destination directory
bpatel
parents: 13842
diff changeset
   544
    public static String addTrailingFileSep(String path) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   545
        String fs = System.getProperty("file.separator");
06bc494ca11e Initial load
duke
parents:
diff changeset
   546
        String dblfs = fs + fs;
06bc494ca11e Initial load
duke
parents:
diff changeset
   547
        int indexDblfs;
14061
9ac68cf0048b 4696488: javadoc doesn't handle UNC paths for destination directory
bpatel
parents: 13842
diff changeset
   548
        while ((indexDblfs = path.indexOf(dblfs, 1)) >= 0) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   549
            path = path.substring(0, indexDblfs) +
06bc494ca11e Initial load
duke
parents:
diff changeset
   550
                path.substring(indexDblfs + fs.length());
06bc494ca11e Initial load
duke
parents:
diff changeset
   551
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   552
        if (!path.endsWith(fs))
06bc494ca11e Initial load
duke
parents:
diff changeset
   553
            path += fs;
06bc494ca11e Initial load
duke
parents:
diff changeset
   554
        return path;
06bc494ca11e Initial load
duke
parents:
diff changeset
   555
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   556
06bc494ca11e Initial load
duke
parents:
diff changeset
   557
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
     * This checks for the validity of the options used by the user.
06bc494ca11e Initial load
duke
parents:
diff changeset
   559
     * This works exactly like
06bc494ca11e Initial load
duke
parents:
diff changeset
   560
     * {@link com.sun.javadoc.Doclet#validOptions(String[][],
06bc494ca11e Initial load
duke
parents:
diff changeset
   561
     * DocErrorReporter)}. This will validate the options which are shared
06bc494ca11e Initial load
duke
parents:
diff changeset
   562
     * by our doclets. For example, this method will flag an error using
06bc494ca11e Initial load
duke
parents:
diff changeset
   563
     * the DocErrorReporter if user has used "-nohelp" and "-helpfile" option
06bc494ca11e Initial load
duke
parents:
diff changeset
   564
     * together.
06bc494ca11e Initial load
duke
parents:
diff changeset
   565
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   566
     * @param options  options used on the command line.
06bc494ca11e Initial load
duke
parents:
diff changeset
   567
     * @param reporter used to report errors.
06bc494ca11e Initial load
duke
parents:
diff changeset
   568
     * @return true if all the options are valid.
06bc494ca11e Initial load
duke
parents:
diff changeset
   569
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   570
    public boolean generalValidOptions(String options[][],
06bc494ca11e Initial load
duke
parents:
diff changeset
   571
            DocErrorReporter reporter) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   572
        boolean docencodingfound = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   573
        String encoding = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   574
        for (int oi = 0; oi < options.length; oi++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   575
            String[] os = options[oi];
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
            String opt = os[0].toLowerCase();
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
            if (opt.equals("-d")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   578
                String destdirname = addTrailingFileSep(os[1]);
14368
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   579
                DocFile destDir = DocFile.createFileForDirectory(this, destdirname);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   580
                if (!destDir.exists()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   581
                    //Create the output directory (in case it doesn't exist yet)
06bc494ca11e Initial load
duke
parents:
diff changeset
   582
                    reporter.printNotice(getText("doclet.dest_dir_create",
06bc494ca11e Initial load
duke
parents:
diff changeset
   583
                        destdirname));
14368
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   584
                    destDir.mkdirs();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   585
                } else if (!destDir.isDirectory()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   586
                    reporter.printError(getText(
06bc494ca11e Initial load
duke
parents:
diff changeset
   587
                        "doclet.destination_directory_not_directory_0",
06bc494ca11e Initial load
duke
parents:
diff changeset
   588
                        destDir.getPath()));
06bc494ca11e Initial load
duke
parents:
diff changeset
   589
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   590
                } else if (!destDir.canWrite()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   591
                    reporter.printError(getText(
06bc494ca11e Initial load
duke
parents:
diff changeset
   592
                        "doclet.destination_directory_not_writable_0",
06bc494ca11e Initial load
duke
parents:
diff changeset
   593
                        destDir.getPath()));
06bc494ca11e Initial load
duke
parents:
diff changeset
   594
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   595
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   596
            } else if (opt.equals("-docencoding")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   597
                docencodingfound = true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   598
                if (!checkOutputFileEncoding(os[1], reporter)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   599
                    return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   600
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   601
            } else if (opt.equals("-encoding")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   602
                encoding = os[1];
06bc494ca11e Initial load
duke
parents:
diff changeset
   603
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   604
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   605
        if (!docencodingfound && encoding.length() > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   606
            if (!checkOutputFileEncoding(encoding, reporter)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   607
                return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   608
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   609
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   610
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   611
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   612
06bc494ca11e Initial load
duke
parents:
diff changeset
   613
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   614
     * Check the validity of the given Source or Output File encoding on this
06bc494ca11e Initial load
duke
parents:
diff changeset
   615
     * platform.
06bc494ca11e Initial load
duke
parents:
diff changeset
   616
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   617
     * @param docencoding output file encoding.
06bc494ca11e Initial load
duke
parents:
diff changeset
   618
     * @param reporter    used to report errors.
06bc494ca11e Initial load
duke
parents:
diff changeset
   619
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   620
    private boolean checkOutputFileEncoding(String docencoding,
06bc494ca11e Initial load
duke
parents:
diff changeset
   621
            DocErrorReporter reporter) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   622
        OutputStream ost= new ByteArrayOutputStream();
06bc494ca11e Initial load
duke
parents:
diff changeset
   623
        OutputStreamWriter osw = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   624
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   625
            osw = new OutputStreamWriter(ost, docencoding);
06bc494ca11e Initial load
duke
parents:
diff changeset
   626
        } catch (UnsupportedEncodingException exc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   627
            reporter.printError(getText("doclet.Encoding_not_supported",
06bc494ca11e Initial load
duke
parents:
diff changeset
   628
                docencoding));
06bc494ca11e Initial load
duke
parents:
diff changeset
   629
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   630
        } finally {
06bc494ca11e Initial load
duke
parents:
diff changeset
   631
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   632
                if (osw != null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   633
                    osw.close();
06bc494ca11e Initial load
duke
parents:
diff changeset
   634
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   635
            } catch (IOException exc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   636
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   637
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   638
        return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   639
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   640
06bc494ca11e Initial load
duke
parents:
diff changeset
   641
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   642
     * Return true if the given doc-file subdirectory should be excluded and
06bc494ca11e Initial load
duke
parents:
diff changeset
   643
     * false otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
   644
     * @param docfilesubdir the doc-files subdirectory to check.
06bc494ca11e Initial load
duke
parents:
diff changeset
   645
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   646
    public boolean shouldExcludeDocFileDir(String docfilesubdir){
06bc494ca11e Initial load
duke
parents:
diff changeset
   647
        if (excludedDocFileDirs.contains(docfilesubdir)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   648
            return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   649
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   650
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   651
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   652
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   653
06bc494ca11e Initial load
duke
parents:
diff changeset
   654
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   655
     * Return true if the given qualifier should be excluded and false otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
   656
     * @param qualifier the qualifier to check.
06bc494ca11e Initial load
duke
parents:
diff changeset
   657
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   658
    public boolean shouldExcludeQualifier(String qualifier){
06bc494ca11e Initial load
duke
parents:
diff changeset
   659
        if (excludedQualifiers.contains("all") ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   660
            excludedQualifiers.contains(qualifier) ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   661
            excludedQualifiers.contains(qualifier + ".*")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   662
            return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   663
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   664
            int index = -1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   665
            while ((index = qualifier.indexOf(".", index + 1)) != -1) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   666
                if (excludedQualifiers.contains(qualifier.substring(0, index + 1) + "*")) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   667
                    return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   668
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   669
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   670
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   671
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   672
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   673
06bc494ca11e Initial load
duke
parents:
diff changeset
   674
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   675
     * Return the qualified name of the <code>ClassDoc</code> if it's qualifier is not excluded.  Otherwise,
06bc494ca11e Initial load
duke
parents:
diff changeset
   676
     * return the unqualified <code>ClassDoc</code> name.
06bc494ca11e Initial load
duke
parents:
diff changeset
   677
     * @param cd the <code>ClassDoc</code> to check.
06bc494ca11e Initial load
duke
parents:
diff changeset
   678
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   679
    public String getClassName(ClassDoc cd) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   680
        PackageDoc pd = cd.containingPackage();
06bc494ca11e Initial load
duke
parents:
diff changeset
   681
        if (pd != null && shouldExcludeQualifier(cd.containingPackage().name())) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   682
            return cd.name();
06bc494ca11e Initial load
duke
parents:
diff changeset
   683
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   684
            return cd.qualifiedName();
06bc494ca11e Initial load
duke
parents:
diff changeset
   685
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   686
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   687
06bc494ca11e Initial load
duke
parents:
diff changeset
   688
    public String getText(String key) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   689
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   690
            //Check the doclet specific properties file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   691
            return getDocletSpecificMsg().getText(key);
06bc494ca11e Initial load
duke
parents:
diff changeset
   692
        } catch (Exception e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   693
            //Check the shared properties file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   694
            return message.getText(key);
06bc494ca11e Initial load
duke
parents:
diff changeset
   695
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   696
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   697
06bc494ca11e Initial load
duke
parents:
diff changeset
   698
    public String getText(String key, String a1) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   699
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   700
            //Check the doclet specific properties file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   701
            return getDocletSpecificMsg().getText(key, a1);
06bc494ca11e Initial load
duke
parents:
diff changeset
   702
        } catch (Exception e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   703
            //Check the shared properties file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   704
            return message.getText(key, a1);
06bc494ca11e Initial load
duke
parents:
diff changeset
   705
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   706
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   707
06bc494ca11e Initial load
duke
parents:
diff changeset
   708
    public String getText(String key, String a1, String a2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   709
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   710
            //Check the doclet specific properties file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   711
            return getDocletSpecificMsg().getText(key, a1, a2);
06bc494ca11e Initial load
duke
parents:
diff changeset
   712
        } catch (Exception e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   713
            //Check the shared properties file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   714
            return message.getText(key, a1, a2);
06bc494ca11e Initial load
duke
parents:
diff changeset
   715
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   716
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   717
06bc494ca11e Initial load
duke
parents:
diff changeset
   718
    public String getText(String key, String a1, String a2, String a3) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   719
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   720
            //Check the doclet specific properties file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   721
            return getDocletSpecificMsg().getText(key, a1, a2, a3);
06bc494ca11e Initial load
duke
parents:
diff changeset
   722
        } catch (Exception e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   723
            //Check the shared properties file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   724
            return message.getText(key, a1, a2, a3);
06bc494ca11e Initial load
duke
parents:
diff changeset
   725
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   726
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   727
06bc494ca11e Initial load
duke
parents:
diff changeset
   728
    /**
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 5520
diff changeset
   729
     * Return true if the ClassDoc element is getting documented, depending upon
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 5520
diff changeset
   730
     * -nodeprecated option and the deprecation information. Return true if
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 5520
diff changeset
   731
     * -nodeprecated is not used. Return false if -nodeprecated is used and if
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 5520
diff changeset
   732
     * either ClassDoc element is deprecated or the containing package is deprecated.
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 5520
diff changeset
   733
     *
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 5520
diff changeset
   734
     * @param cd the ClassDoc for which the page generation is checked
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   735
     */
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 5520
diff changeset
   736
    public boolean isGeneratedDoc(ClassDoc cd) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   737
        if (!nodeprecated) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   738
            return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   739
        }
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 5520
diff changeset
   740
        return !(Util.isDeprecated(cd) || Util.isDeprecated(cd.containingPackage()));
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   741
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   742
06bc494ca11e Initial load
duke
parents:
diff changeset
   743
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   744
     * Return the doclet specific instance of a writer factory.
06bc494ca11e Initial load
duke
parents:
diff changeset
   745
     * @return the {@link WriterFactory} for the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   746
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   747
    public abstract WriterFactory getWriterFactory();
06bc494ca11e Initial load
duke
parents:
diff changeset
   748
06bc494ca11e Initial load
duke
parents:
diff changeset
   749
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   750
     * Return the input stream to the builder XML.
06bc494ca11e Initial load
duke
parents:
diff changeset
   751
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   752
     * @return the input steam to the builder XML.
06bc494ca11e Initial load
duke
parents:
diff changeset
   753
     * @throws FileNotFoundException when the given XML file cannot be found.
06bc494ca11e Initial load
duke
parents:
diff changeset
   754
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   755
    public InputStream getBuilderXML() throws FileNotFoundException {
06bc494ca11e Initial load
duke
parents:
diff changeset
   756
        return builderXMLPath == null ?
06bc494ca11e Initial load
duke
parents:
diff changeset
   757
            Configuration.class.getResourceAsStream(DEFAULT_BUILDER_XML) :
14368
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14361
diff changeset
   758
            DocFile.createFileForInput(this, builderXMLPath).openInputStream();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   759
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   760
06bc494ca11e Initial load
duke
parents:
diff changeset
   761
    /**
1863
e5de9abc0eb1 6786682: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - HTML tag should have lang attribute
bpatel
parents: 1789
diff changeset
   762
     * Return the Locale for this document.
e5de9abc0eb1 6786682: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - HTML tag should have lang attribute
bpatel
parents: 1789
diff changeset
   763
     */
e5de9abc0eb1 6786682: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - HTML tag should have lang attribute
bpatel
parents: 1789
diff changeset
   764
    public abstract Locale getLocale();
e5de9abc0eb1 6786682: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - HTML tag should have lang attribute
bpatel
parents: 1789
diff changeset
   765
e5de9abc0eb1 6786682: Javadoc HTML WCAG 2.0 accessibility issues in standard doclet - HTML tag should have lang attribute
bpatel
parents: 1789
diff changeset
   766
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   767
     * Return the comparator that will be used to sort member documentation.
06bc494ca11e Initial load
duke
parents:
diff changeset
   768
     * To no do any sorting, return null.
06bc494ca11e Initial load
duke
parents:
diff changeset
   769
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   770
     * @return the {@link java.util.Comparator} used to sort members.
06bc494ca11e Initial load
duke
parents:
diff changeset
   771
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   772
    public abstract Comparator<ProgramElementDoc> getMemberComparator();
14542
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
   773
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
   774
    private void setTabWidth(int n) {
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
   775
        sourcetab = n;
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
   776
        tabSpaces = String.format("%" + n + "s", "");
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14368
diff changeset
   777
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   778
}