langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/tool/resources/javadoc.properties
author pmuthuswamy
Sat, 15 Jul 2017 11:06:32 -0700
changeset 45912 865870b7fe9b
parent 44450 eb4f067bae4c
permissions -rw-r--r--
8177048: javadoc should support -version and/or --version Reviewed-by: jjg, ksrini
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
#
43875
d0e60aa1f18b 8175047: javadoc should support --help-extra as a synonym for -X
jjg
parents: 43772
diff changeset
     2
# Copyright (c) 1997, 2017, 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: 10
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: 10
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: 10
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
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
main.errors={0} errors
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
main.error={0} error
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
main.warnings={0} warnings
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
main.warning={0} warning
18005
598e2e068668 8007687: javadoc -X does not include -Xdoclint
jjg
parents: 14545
diff changeset
    30
41252
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    31
main.usage=Usage:\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    32
\    javadoc [options] [packagenames] [sourcefiles] [@files]\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    33
where options include:
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    34
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    35
main.opt.public.desc=\
43575
f202ab5b96b4 8173667: Update command line help for -public -protected -package -private options
ksrini
parents: 42407
diff changeset
    36
    Show only public types and members. For named modules,\n\
f202ab5b96b4 8173667: Update command line help for -public -protected -package -private options
ksrini
parents: 42407
diff changeset
    37
    show exported packages and the module''s API.
41252
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    38
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    39
main.opt.protected.desc=\
43575
f202ab5b96b4 8173667: Update command line help for -public -protected -package -private options
ksrini
parents: 42407
diff changeset
    40
    Show protected/public types and members (default). For\n\
f202ab5b96b4 8173667: Update command line help for -public -protected -package -private options
ksrini
parents: 42407
diff changeset
    41
    named modules, show exported packages and the module''s API.
41252
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    42
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    43
main.opt.package.desc=\
43575
f202ab5b96b4 8173667: Update command line help for -public -protected -package -private options
ksrini
parents: 42407
diff changeset
    44
    Show package/protected/public types and members. For \n\
f202ab5b96b4 8173667: Update command line help for -public -protected -package -private options
ksrini
parents: 42407
diff changeset
    45
    named modules, show all packages and all module details.
41252
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    46
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    47
main.opt.private.desc=\
43575
f202ab5b96b4 8173667: Update command line help for -public -protected -package -private options
ksrini
parents: 42407
diff changeset
    48
    Show all types and members. For named modules,\n\
f202ab5b96b4 8173667: Update command line help for -public -protected -package -private options
ksrini
parents: 42407
diff changeset
    49
    show all packages and all module details.
41252
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    50
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    51
main.opt.show.members.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    52
    <value>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    53
main.opt.show.members.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    54
    Specifies which members (fields, methods, etc.) will be\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    55
    documented, where value can be one of "public", "protected",\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    56
    "package" or "private". The default is "protected", which will\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    57
    show public and protected members, "public" will show only\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    58
    public members, "package" will show public, protected and\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    59
    package members and "private" will show all members.
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    60
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    61
main.opt.show.types.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    62
    <value>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    63
main.opt.show.types.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    64
    Specifies which types (classes, interfaces, etc.) will be\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    65
    documented, where value can be one of "public", "protected",\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    66
    "package" or "private". The default is "protected", which will\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    67
    show public and protected types, "public" will show only\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    68
    public types, "package" will show public, protected and\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    69
    package types and "private" will show all types.
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    70
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    71
main.opt.show.packages.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    72
    <value>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    73
main.opt.show.packages.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    74
    Specifies which module's packages will be documented. Possible\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    75
    values are "exported" or "all" packages.
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    76
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    77
main.opt.show.module.contents.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    78
    <value>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    79
main.opt.show.module.contents.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    80
    Specifies the documentation granularity of module\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    81
    declarations. Possible values are "api" or "all".
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    82
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    83
main.opt.expand.requires.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    84
    <value>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    85
main.opt.expand.requires.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    86
    Instructs the tool to expand the set of modules to be\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    87
    documented. By default, only the modules given explicitly on\n\
44389
a745e6ff79a5 8176481: javadoc does not consider mandated modules
ksrini
parents: 44301
diff changeset
    88
    the command line will be documented. A value of "transitive"\n\
a745e6ff79a5 8176481: javadoc does not consider mandated modules
ksrini
parents: 44301
diff changeset
    89
    will additionally include all "requires transitive"\n\
a745e6ff79a5 8176481: javadoc does not consider mandated modules
ksrini
parents: 44301
diff changeset
    90
    dependencies of those modules. A value of "all" will include\n\
a745e6ff79a5 8176481: javadoc does not consider mandated modules
ksrini
parents: 44301
diff changeset
    91
    all dependencies of those modules.
41252
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    92
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    93
main.opt.help.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    94
    Display command line options and exit
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    95
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    96
main.opt.module.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    97
    <module>(,<module>)*
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    98
main.opt.module.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
    99
    Document the specified module(s)
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   100
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   101
main.opt.doclet.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   102
    <class>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   103
main.opt.doclet.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   104
    Generate output via alternate doclet
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   105
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   106
main.opt.docletpath.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   107
    <path>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   108
main.opt.docletpath.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   109
    Specify where to find doclet class files
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   110
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   111
main.opt.module.source.path.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   112
    <path>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   113
main.opt.module.source.path.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   114
    Specify where to find input source files for multiple modules
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   115
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   116
main.opt.upgrade.module.path.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   117
    <path>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   118
main.opt.upgrade.module.path.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   119
    Override location of upgradeable modules
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   120
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   121
main.opt.module.path.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   122
    <path>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   123
main.opt.module.path.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   124
    Specify where to find application modules
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   125
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   126
main.opt.add.modules.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   127
    <module>(,<module>)*
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   128
main.opt.add.modules.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   129
    Root modules to resolve in addition to the initial modules,\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   130
    or all modules on the module path if <module> is\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   131
    ALL-MODULE-PATH.
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   132
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   133
main.opt.limit.modules.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   134
    <module>(,<module>)*
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   135
main.opt.limit.modules.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   136
    Limit the universe of observable modules
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   137
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   138
main.opt.source.path.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   139
    <path>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   140
main.opt.source.path.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   141
    Specify where to find source files
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   142
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   143
main.opt.class.path.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   144
    <path>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   145
main.opt.class.path.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   146
    Specify where to find user class files
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   147
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   148
main.opt.exclude.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   149
    <pkglist>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   150
main.opt.exclude.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   151
    Specify a list of packages to exclude
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   152
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   153
main.opt.subpackages.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   154
    <subpkglist>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   155
main.opt.subpackages.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   156
    Specify subpackages to recursively load
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   157
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   158
main.opt.breakiterator.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   159
    Compute first sentence with BreakIterator
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   160
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   161
main.opt.bootclasspath.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   162
    <path>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   163
main.opt.bootclasspath.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   164
    Override location of platform class files used for non-modular\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   165
    releases
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   166
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   167
main.opt.system.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   168
    <jdk>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   169
main.opt.system.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   170
    Override location of system modules used for modular releases
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   171
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   172
main.opt.release.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   173
    <release>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   174
main.opt.release.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   175
    Provide source compatibility with specified release
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   176
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   177
main.opt.source.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   178
    <release>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   179
main.opt.source.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   180
    Provide source compatibility with specified release
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   181
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   182
main.opt.extdirs.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   183
    <dirlist>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   184
main.opt.extdirs.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   185
    Override location of installed extensions
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   186
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   187
main.opt.verbose.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   188
    Output messages about what Javadoc is doing
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   189
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   190
main.opt.locale.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   191
    <name>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   192
main.opt.locale.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   193
    Locale to be used, e.g. en_US or en_US_WIN
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   194
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   195
main.opt.encoding.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   196
    <name>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   197
main.opt.encoding.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   198
    Source file encoding name
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   199
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   200
main.opt.quiet.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   201
    Do not display status messages
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   202
45912
865870b7fe9b 8177048: javadoc should support -version and/or --version
pmuthuswamy
parents: 44450
diff changeset
   203
main.opt.version.desc=\
865870b7fe9b 8177048: javadoc should support -version and/or --version
pmuthuswamy
parents: 44450
diff changeset
   204
    Print version information
865870b7fe9b 8177048: javadoc should support -version and/or --version
pmuthuswamy
parents: 44450
diff changeset
   205
41252
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   206
main.opt.J.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   207
    <flag>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   208
main.opt.J.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   209
    Pass <flag> directly to the runtime system
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   210
43875
d0e60aa1f18b 8175047: javadoc should support --help-extra as a synonym for -X
jjg
parents: 43772
diff changeset
   211
main.opt.help.extra.desc=\
41252
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   212
    Print a synopsis of nonstandard options and exit
18005
598e2e068668 8007687: javadoc -X does not include -Xdoclint
jjg
parents: 14545
diff changeset
   213
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 37849
diff changeset
   214
main.usage.foot=\n\
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40308
diff changeset
   215
GNU-style options may use '=' instead of whitespace to separate the name of an\n\
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40308
diff changeset
   216
option from its value.\n
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 37849
diff changeset
   217
41252
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   218
main.Xusage=
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   219
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   220
main.opt.Xmaxerrs.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   221
    <number>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   222
main.opt.Xmaxerrs.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   223
    Set the maximum number of errors to print
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   224
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   225
main.opt.Xmaxwarns.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   226
    <number>
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   227
main.opt.Xmaxwarns.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   228
    Set the maximum number of warnings to print
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   229
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   230
main.opt.add.exports.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   231
    <module>/<package>=<other-module>(,<other-module>)*
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   232
main.opt.add.exports.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   233
    Specify a package to be considered as exported from its\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   234
    defining module to additional modules, or to all unnamed\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   235
    modules if <other-module> is ALL-UNNAMED
18005
598e2e068668 8007687: javadoc -X does not include -Xdoclint
jjg
parents: 14545
diff changeset
   236
41252
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   237
main.opt.add.reads.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   238
    <module>=<other-module>(,<other-module>)*
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   239
main.opt.add.reads.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   240
    Specify additional modules to be considered as required by a\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   241
    given module. <other-module> may be ALL-UNNAMED to require\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   242
    the unnamed module.
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   243
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   244
main.opt.patch.module.arg=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   245
    <module>=<file>(:<file>)*
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   246
main.opt.patch.module.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   247
    Override or augment a module with classes and resources in\n\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   248
    JAR files or directories
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   249
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   250
main.opt.Xold.desc=\
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   251
    Invoke the legacy javadoc tool
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   252
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   253
main.Xusage.foot=\n\
5850
6f095ff5b469 6958836: javadoc should support -Xmaxerrs and -Xmaxwarns
jjg
parents: 5848
diff changeset
   254
These options are non-standard and subject to change without notice.
18005
598e2e068668 8007687: javadoc -X does not include -Xdoclint
jjg
parents: 14545
diff changeset
   255
41252
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   256
main.doclet.usage.header=\nProvided by the {0} doclet:
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 32163
diff changeset
   257
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
main.requires_argument=option {0} requires an argument.
41252
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   259
main.unnecessary_arg_provided=option {0} does not require an argument
058d83c9b1c7 8166144: New javadoc options don't conform to JEP 293 (GNU style options)
jjg
parents: 40508
diff changeset
   260
main.only_one_argument_with_equals=cannot use ''='' syntax for options that require multiple arguments
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
main.invalid_flag=invalid flag: {0}
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40308
diff changeset
   262
main.No_modules_packages_or_classes_specified=No modules, packages or classes specified.
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40308
diff changeset
   263
main.module_not_found=module {0} not found.\n
44301
2f97c71f06f4 8175346: javadoc does not handle Locations correctly with --patch-module
ksrini
parents: 44288
diff changeset
   264
main.cannot_use_sourcepath_for_modules=cannot use source path for multiple modules {0}
2f97c71f06f4 8175346: javadoc does not handle Locations correctly with --patch-module
ksrini
parents: 44288
diff changeset
   265
main.module_not_found_on_sourcepath=module {0} not found on source path
2f97c71f06f4 8175346: javadoc does not handle Locations correctly with --patch-module
ksrini
parents: 44288
diff changeset
   266
main.sourcepath_does_not_contain_module=source path does not contain module {0}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
main.cant.read=cannot read {0}
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
main.Loading_source_files_for_package=Loading source files for package {0}...
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
main.Loading_source_file=Loading source file {0}...
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
main.Building_tree=Constructing Javadoc information...
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
main.no_source_files_for_package=No source files for package {0}
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40308
diff changeset
   272
main.package_not_found=Package {0} not found
41451
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 41252
diff changeset
   273
main.fatal.error=fatal error encountered: {0}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
main.out.of.memory=java.lang.OutOfMemoryError: Please increase memory.\n\
5848
c5a4ce47e780 6960407: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5520
diff changeset
   275
For example, on the JDK Classic or HotSpot VMs, add the option -J-Xmx\n\
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
such as -J-Xmx32m.
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
main.done_in=[done in {0} ms]
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
main.more_than_one_doclet_specified_0_and_1=More than one doclet specified ({0} and {1}).
41451
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 41252
diff changeset
   279
main.doclet_could_not_get_location=Could not get location for {0}
37750
d213951c811b 8154482: javadoc tool must support legacy doclet and taglet
ksrini
parents: 37393
diff changeset
   280
main.doclet_could_not_set_location=Could not set location for {0}
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 32163
diff changeset
   281
main.doclet_no_classloader_found=Could not obtain classloader to load {0}
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 32163
diff changeset
   282
main.could_not_instantiate_class=Could not instantiate class {0}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
main.doclet_class_not_found=Cannot find doclet class {0}
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
main.illegal_locale_name=Locale not available: {0}
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
main.malformed_locale_name=Malformed locale name: {0}
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
main.file_not_found=File not found: "{0}"
32163
2bdcabf14e91 8133223: Clean up package handling code in JavadocTool
jjg
parents: 31936
diff changeset
   287
main.illegal_class_name=Illegal class name: "{0}"
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
main.illegal_package_name=Illegal package name: "{0}"
40508
74ef30d16fb9 8159305: Enhance the javadoc tool to support module related options
ksrini
parents: 40308
diff changeset
   289
main.illegal_option_value=Illegal option value: "{0}"
41451
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 41252
diff changeset
   290
main.file.manager.list=FileManager error listing files: "{0}"
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 41252
diff changeset
   291
main.assertion.error=assertion failed: "{0}}"
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 32163
diff changeset
   292
main.unknown.error=an unknown error has occurred
41451
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 41252
diff changeset
   293
main.internal.error=an internal error has occurred
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 41252
diff changeset
   294
main.unexpected.exception=an unexpected exception was caught: {0}
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 41252
diff changeset
   295
doclet.internal.report.bug=\
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 41252
diff changeset
   296
Please file a bug against the javadoc tool via the Java bug reporting page\n\
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 41252
diff changeset
   297
(http://bugreport.java.com) after checking the Bug Database (http://bugs.java.com)\n\
a847c7aa25a7 8151102: Cleanup javadoc exception handling
ksrini
parents: 41252
diff changeset
   298
for duplicates. Include error messages and the following diagnostic in your report. Thank you.
37750
d213951c811b 8154482: javadoc tool must support legacy doclet and taglet
ksrini
parents: 37393
diff changeset
   299
main.legacy_api=The old Doclet and Taglet APIs in the packages\n\
d213951c811b 8154482: javadoc tool must support legacy doclet and taglet
ksrini
parents: 37393
diff changeset
   300
    com.sun.javadoc, com.sun.tools.doclets and their implementations\n\
d213951c811b 8154482: javadoc tool must support legacy doclet and taglet
ksrini
parents: 37393
diff changeset
   301
    are planned to be removed in a future JDK release. These\n\
d213951c811b 8154482: javadoc tool must support legacy doclet and taglet
ksrini
parents: 37393
diff changeset
   302
    components have been superseded by the new APIs in jdk.javadoc.doclet.\n\
d213951c811b 8154482: javadoc tool must support legacy doclet and taglet
ksrini
parents: 37393
diff changeset
   303
    Users are strongly recommended to migrate to the new APIs.\n
d213951c811b 8154482: javadoc tool must support legacy doclet and taglet
ksrini
parents: 37393
diff changeset
   304
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
javadoc.class_not_found=Class {0} not found.
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
javadoc.error=error
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
javadoc.warning=warning
14545
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14447
diff changeset
   308
javadoc.error.msg={0}: error - {1}
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14447
diff changeset
   309
javadoc.warning.msg={0}: warning - {1}
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14447
diff changeset
   310
javadoc.note.msg = {1}
2e7bab0639b8 6493690: javadoc should have a javax.tools.Tool service provider installed in tools.jar
jjg
parents: 14447
diff changeset
   311
javadoc.note.pos.msg= {0}: {1}
45912
865870b7fe9b 8177048: javadoc should support -version and/or --version
pmuthuswamy
parents: 44450
diff changeset
   312
javadoc.version={0} {1}
865870b7fe9b 8177048: javadoc should support -version and/or --version
pmuthuswamy
parents: 44450
diff changeset
   313
javadoc.fullversion={0} full version "{1}"