javadoc.properties revision 3896:8e4dbcb99277
1#
2# Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# This code is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License version 2 only, as
7# published by the Free Software Foundation.  Oracle designates this
8# particular file as subject to the "Classpath" exception as provided
9# by Oracle in the LICENSE file that accompanied this code.
10#
11# This code is distributed in the hope that it will be useful, but WITHOUT
12# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14# version 2 for more details (a copy is included in the LICENSE file that
15# accompanied this code).
16#
17# You should have received a copy of the GNU General Public License version
18# 2 along with this work; if not, write to the Free Software Foundation,
19# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20#
21# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22# or visit www.oracle.com if you need additional information or have any
23# questions.
24#
25
26main.errors={0} errors
27main.error={0} error
28main.warnings={0} warnings
29main.warning={0} warning
30
31main.usage=Usage: javadoc [options] [packagenames] [sourcefiles] [@files]\n\
32\  -overview <file>                 Read overview documentation from HTML file\n\
33\  -public                          Show only public classes and members\n\
34\  -protected                       Show protected/public classes and members (default)\n\
35\  -package                         Show package/protected/public classes and members\n\
36\  -private                         Show all classes and members\n\
37\  -help                            Display command line options and exit\n\
38\  -doclet <class>                  Generate output via alternate doclet\n\
39\  -docletpath <path>               Specify where to find doclet class files\n\
40\  --module-source-path <path>      Specify where to find input source files for multiple modules\n\
41\  --upgrade-module-path <path>     Override location of upgradeable modules\n\
42\  --module-path <path>, -p <path>  Specify where to find application modules\n\
43\  --add-modules <module>(,<module>)*\n\
44\                                   Root modules to resolve in addition to the initial modules,\n\
45\                                   or all modules on the module path if <module> is ALL-MODULE-PATH.\n\
46\  --limit-modules <module>(,<module>)*\n\
47\                                   Limit the universe of observable modules\n\
48\  --source-path <path>             Specify where to find source files\n\
49\  -sourcepath <path>               Specify where to find source files\n\
50\  --class-path <path>              Specify where to find user class files\n\
51\  -classpath <path>                Specify where to find user class files\n\
52\  -cp <path>                       Specify where to find user class files\n\
53\  -exclude <pkglist>               Specify a list of packages to exclude\n\
54\  -subpackages <subpkglist>        Specify subpackages to recursively load\n\
55\  -breakiterator                   Compute first sentence with BreakIterator\n\
56\  -bootclasspath <path>            Override location of platform class files\n\
57\                                   used for non-modular releases\n\
58\  --system <jdk>                   Override location of system modules used\n\
59\                                   for modular releases.\n\
60\  -source <release>                Provide source compatibility with specified release\n\
61\  --release <release>              Provide source compatibility with specified release\n\
62\  -extdirs <dirlist>               Override location of installed extensions\n\
63\  -verbose                         Output messages about what Javadoc is doing\n\
64\  -locale <name>                   Locale to be used, e.g. en_US or en_US_WIN\n\
65\  -encoding <name>                 Source file encoding name\n\
66\  -quiet                           Do not display status messages\n\
67\  -J<flag>                         Pass <flag> directly to the runtime system\n\
68\  -X                               Print a synopsis of nonstandard options and exit\n
69
70main.usage.foot=\n\
71GNU-style options may use '=' instead whitespace to separate the name of an option\n\
72from its value.\n
73
74main.Xusage=\
75\  -Xmaxerrs <number>               Set the maximum number of errors to print\n\
76\  -Xmaxwarns <number>              Set the maximum number of warnings to print\n\
77\  --add-exports <module>/<package>=<other-module>(,<other-module>)*\n\
78\                                   Specify a package to be considered as exported from its \n\
79\                                   defining module to additional modules, or to all unnamed \n\
80\                                   modules if <other-module> is ALL-UNNAMED.\n\
81\  --add-reads <module>=<other-module>(,<other-module>)*\n\
82\                                   Specify additional modules to be considered as required by a\n\
83\                                   given module. <other-module> may be ALL-UNNAMED to require\n\
84\                                   the unnamed module.\n\
85\  -Xmodule:<module-name>           Specify a module to which the classes being compiled belong.\n\
86\  --patch-module <module>=<file>(:<file>)*\n\
87\                                   Override or augment a module with classes and resources\n\
88\                                   in JAR files or directories\n
89
90main.Xusage.foot=\
91These options are non-standard and subject to change without notice.
92
93main.option.already.seen=The {0} option may be specified no more than once.
94main.requires_argument=option {0} requires an argument.
95main.locale_first=option -locale must be first on the command line.
96main.invalid_flag=invalid flag: {0}
97main.No_packages_or_classes_specified=No packages or classes specified.
98main.incompatible.access.flags=More than one of -public, -private, -package, or -protected specified.
99main.cant.read=cannot read {0}
100main.Loading_source_files_for_package=Loading source files for package {0}...
101main.Loading_source_file=Loading source file {0}...
102main.Building_tree=Constructing Javadoc information...
103main.no_source_files_for_package=No source files for package {0}
104main.fatal.error=fatal error
105main.fatal.exception=fatal exception
106main.out.of.memory=java.lang.OutOfMemoryError: Please increase memory.\n\
107For example, on the JDK Classic or HotSpot VMs, add the option -J-Xmx\n\
108such as -J-Xmx32m.
109main.done_in=[done in {0} ms]
110main.doclet_method_must_be_static=In doclet class {0}, method {1} must be static.
111main.must_return_int=In doclet class {0}, method {1} must return int.
112main.must_return_boolean=In doclet class {0}, method {1} must return boolean.
113main.must_return_languageversion=In doclet class {0}, method {1} must return LanguageVersion.
114main.more_than_one_doclet_specified_0_and_1=More than one doclet specified ({0} and {1}).
115main.doclet_class_not_found=Cannot find doclet class {0}
116main.doclet_method_not_found=Doclet class {0} does not contain a {1} method
117main.doclet_method_not_accessible=In doclet class {0},  method {1} not accessible
118main.internal_error_exception_thrown=Internal error: In doclet class {0},  method {1} has thrown an exception {2}
119main.exception_thrown=In doclet class {0},  method {1} has thrown an exception {2}
120main.illegal_locale_name=Locale not available: {0}
121main.malformed_locale_name=Malformed locale name: {0}
122main.file_not_found=File not found: "{0}"
123main.file_ignored=File ignored: "{0}" (not yet supported)
124main.illegal_class_name=Illegal class name: "{0}"
125main.illegal_package_name=Illegal package name: "{0}"
126main.release.bootclasspath.conflict=option {0} cannot be used together with -release
127main.unsupported.release.version=release version {0} not supported
128main.release.not.standard.file.manager=-release option specified, but the provided JavaFileManager is not a StandardJavaFileManager.
129main.option.invalid.value={0}
130tag.illegal_char_in_arr_dim=Tag {0}: Syntax Error in array dimension, method parameters: {1}
131tag.illegal_see_tag=Tag {0}: Syntax Error in method parameters: {1}
132tag.missing_comma_space=Tag {0}: Missing comma or space in method parameters: {1}
133tag.tag_has_no_arguments={0} tag has no arguments.
134tag.see.missing_sharp=Tag {0}: missing ''#'': "{1}"
135tag.see.can_not_find_member=Tag {0}: can''t find {1} in {2}
136tag.see.no_close_bracket_on_url=Tag {0}: missing final ''>'': "{1}"
137tag.see.no_close_quote=Tag {0}: no final close quote: "{1}"
138tag.see.class_not_specified=Tag {0}: class not specified: "{1}"
139tag.see.illegal_character=Tag {0}:illegal character: "{1}" in "{2}"
140tag.see.malformed_see_tag=Tag {0}: malformed: "{1}"
141tag.End_delimiter_missing_for_possible_SeeTag=End Delimiter } missing for possible See Tag in comment string: "{0}"
142tag.Improper_Use_Of_Link_Tag=Missing closing ''}'' character for inline tag: "{0}"
143tag.serialField.illegal_character=illegal character {0} in @serialField tag: {1}.
144javadoc.File_Read_Error=Error while reading file {0}
145javadoc.Body_missing_from_html_file=Body tag missing from HTML file
146javadoc.End_body_missing_from_html_file=Close body tag missing from HTML file
147javadoc.Multiple_package_comments=Multiple sources of package comments found for package "{0}"
148javadoc.JavaScript_in_comment=JavaScript found in documentation comment.\n\
149    Use --allow-script-in-comments to allow use of JavaScript.
150javadoc.class_not_found=Class {0} not found.
151javadoc.error=error
152javadoc.warning=warning
153
154javadoc.error.msg={0}: error - {1}
155javadoc.warning.msg={0}: warning - {1}
156javadoc.note.msg = {1}
157javadoc.note.pos.msg= {0}: {1}
158