src/share/classes/com/sun/tools/javac/resources/javac.properties

Mon, 16 Oct 2017 16:07:48 +0800

author
aoqi
date
Mon, 16 Oct 2017 16:07:48 +0800
changeset 2893
ca5783d9a597
parent 2795
1500756ea2b8
parent 2525
2eb010b6cb22
child 3295
859dc787b52b
permissions
-rw-r--r--

merge

aoqi@0 1 #
aoqi@0 2 # Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 #
aoqi@0 5 # This code is free software; you can redistribute it and/or modify it
aoqi@0 6 # under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 # published by the Free Software Foundation. Oracle designates this
aoqi@0 8 # particular file as subject to the "Classpath" exception as provided
aoqi@0 9 # by Oracle in the LICENSE file that accompanied this code.
aoqi@0 10 #
aoqi@0 11 # This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 14 # version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 15 # accompanied this code).
aoqi@0 16 #
aoqi@0 17 # You should have received a copy of the GNU General Public License version
aoqi@0 18 # 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 20 #
aoqi@0 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 22 # or visit www.oracle.com if you need additional information or have any
aoqi@0 23 # questions.
aoqi@0 24 #
aoqi@0 25
aoqi@0 26 ## standard options
aoqi@0 27
aoqi@0 28 javac.opt.g=\
aoqi@0 29 Generate all debugging info
aoqi@0 30 javac.opt.g.none=\
aoqi@0 31 Generate no debugging info
aoqi@0 32 javac.opt.g.lines.vars.source=\
aoqi@0 33 Generate only some debugging info
aoqi@0 34 javac.opt.nowarn=\
aoqi@0 35 Generate no warnings
aoqi@0 36 javac.opt.verbose=\
aoqi@0 37 Output messages about what the compiler is doing
aoqi@0 38 javac.opt.deprecation=\
aoqi@0 39 Output source locations where deprecated APIs are used
aoqi@0 40 javac.opt.classpath=\
aoqi@0 41 Specify where to find user class files and annotation processors
aoqi@0 42 javac.opt.sourcepath=\
aoqi@0 43 Specify where to find input source files
aoqi@0 44 javac.opt.bootclasspath=\
aoqi@0 45 Override location of bootstrap class files
aoqi@0 46 javac.opt.Xbootclasspath.p=\
aoqi@0 47 Prepend to the bootstrap class path
aoqi@0 48 javac.opt.Xbootclasspath.a=\
aoqi@0 49 Append to the bootstrap class path
aoqi@0 50 javac.opt.endorseddirs=\
aoqi@0 51 Override location of endorsed standards path
aoqi@0 52 javac.opt.extdirs=\
aoqi@0 53 Override location of installed extensions
aoqi@0 54 javac.opt.processorpath=\
aoqi@0 55 Specify where to find annotation processors
aoqi@0 56 javac.opt.processor=\
aoqi@0 57 Names of the annotation processors to run; bypasses default discovery process
aoqi@0 58 javac.opt.parameters=\
aoqi@0 59 Generate metadata for reflection on method parameters
aoqi@0 60 javac.opt.proc.none.only=\
aoqi@0 61 Control whether annotation processing and/or compilation is done.
aoqi@0 62 javac.opt.d=\
aoqi@0 63 Specify where to place generated class files
aoqi@0 64 javac.opt.sourceDest=\
aoqi@0 65 Specify where to place generated source files
aoqi@0 66 javac.opt.headerDest=\
aoqi@0 67 Specify where to place generated native header files
aoqi@0 68 javac.opt.J=\
aoqi@0 69 Pass <flag> directly to the runtime system
aoqi@0 70 javac.opt.encoding=\
aoqi@0 71 Specify character encoding used by source files
aoqi@0 72 javac.opt.profile=\
aoqi@0 73 Check that API used is available in the specified profile
aoqi@0 74 javac.opt.target=\
aoqi@0 75 Generate class files for specific VM version
aoqi@0 76 javac.opt.source=\
aoqi@0 77 Provide source compatibility with specified release
aoqi@0 78 javac.opt.Werror=\
aoqi@0 79 Terminate compilation if warnings occur
aoqi@0 80 javac.opt.A=\
aoqi@0 81 Options to pass to annotation processors
aoqi@0 82 javac.opt.implicit=\
aoqi@0 83 Specify whether or not to generate class files for implicitly referenced files
aoqi@0 84 javac.opt.pkginfo=\
aoqi@0 85 Specify handling of package-info files
aoqi@0 86 javac.opt.arg.class=\
aoqi@0 87 <class>
aoqi@0 88 javac.opt.arg.class.list=\
aoqi@0 89 <class1>[,<class2>,<class3>...]
aoqi@0 90 javac.opt.arg.flag=\
aoqi@0 91 <flag>
aoqi@0 92 javac.opt.arg.key.equals.value=\
aoqi@0 93 key[=value]
aoqi@0 94 javac.opt.arg.path=\
aoqi@0 95 <path>
aoqi@0 96 javac.opt.arg.dirs=\
aoqi@0 97 <dirs>
aoqi@0 98 javac.opt.arg.directory=\
aoqi@0 99 <directory>
aoqi@0 100 javac.opt.arg.encoding=\
aoqi@0 101 <encoding>
aoqi@0 102 javac.opt.arg.profile=\
aoqi@0 103 <profile>
aoqi@0 104 javac.opt.arg.release=\
aoqi@0 105 <release>
aoqi@0 106 javac.opt.arg.number=\
aoqi@0 107 <number>
aoqi@0 108 javac.opt.plugin=\
aoqi@0 109 Name and optional arguments for a plug-in to be run
aoqi@0 110 javac.opt.arg.plugin=\
aoqi@0 111 "name args"
aoqi@0 112
aoqi@0 113 ## extended options
aoqi@0 114
aoqi@0 115 javac.opt.maxerrs=\
aoqi@0 116 Set the maximum number of errors to print
aoqi@0 117 javac.opt.maxwarns=\
aoqi@0 118 Set the maximum number of warnings to print
aoqi@0 119 javac.opt.nogj=\
aoqi@0 120 Don't accept generics in the language
aoqi@0 121 javac.opt.moreinfo=\
aoqi@0 122 Print extended information for type variables
aoqi@0 123 javac.opt.printflat=\
aoqi@0 124 Print abstract syntax tree after inner class conversion
aoqi@0 125 javac.opt.printsearch=\
aoqi@0 126 Print information where classfiles are searched
aoqi@0 127 javac.opt.prompt=\
aoqi@0 128 Stop after each error
aoqi@0 129 javac.opt.retrofit=\
aoqi@0 130 Retrofit existing classfiles with generic types
aoqi@0 131 javac.opt.s=\
aoqi@0 132 Emit java sources instead of classfiles
aoqi@0 133 javac.opt.scramble=\
aoqi@0 134 Scramble private identifiers in bytecode
aoqi@0 135 javac.opt.scrambleall=\
aoqi@0 136 Scramble package visible identifiers in bytecode
aoqi@0 137 javac.opt.version=\
aoqi@0 138 Version information
aoqi@0 139 javac.opt.arg.pathname=\
aoqi@0 140 <pathname>
aoqi@0 141 javac.opt.arg.file=\
aoqi@0 142 <filename>
aoqi@0 143 javac.opt.Xlint=\
aoqi@0 144 Enable recommended warnings
aoqi@0 145 javac.opt.Xlint.suboptlist=\
aoqi@0 146 Enable or disable specific warnings
aoqi@0 147 javac.opt.Xdoclint=\
aoqi@0 148 Enable recommended checks for problems in javadoc comments
aoqi@0 149 # L10N: do not localize: all none
aoqi@0 150 javac.opt.Xdoclint.subopts = \
aoqi@0 151 (all|none|[-]<group>)[/<access>]
aoqi@0 152
aoqi@0 153 # L10N: do not localize: accessibility html missing reference syntax
aoqi@0 154 # L10N: do not localize: public protected package private
aoqi@0 155 javac.opt.Xdoclint.custom=\n\
aoqi@0 156 \ Enable or disable specific checks for problems in javadoc comments,\n\
aoqi@0 157 \ where <group> is one of accessibility, html, missing, reference, or syntax,\n\
aoqi@0 158 \ and <access> is one of public, protected, package, or private.
aoqi@0 159 javac.opt.Xstdout=\
aoqi@0 160 Redirect standard output
aoqi@0 161 javac.opt.X=\
aoqi@0 162 Print a synopsis of nonstandard options
aoqi@0 163 javac.opt.help=\
aoqi@0 164 Print a synopsis of standard options
aoqi@0 165 javac.opt.print=\
aoqi@0 166 Print out a textual representation of specified types
aoqi@0 167 javac.opt.printRounds=\
aoqi@0 168 Print information about rounds of annotation processing
aoqi@0 169 javac.opt.printProcessorInfo=\
aoqi@0 170 Print information about which annotations a processor is asked to process
aoqi@0 171 javac.opt.prefer=\
aoqi@0 172 Specify which file to read when both a source file and class file are found for an implicitly compiled class
aoqi@0 173 javac.opt.AT=\
aoqi@0 174 Read options and filenames from file
aoqi@0 175 javac.opt.diags=\
aoqi@0 176 Select a diagnostic mode
aoqi@0 177
aoqi@0 178 ## errors
aoqi@0 179
aoqi@0 180 javac.err.empty.A.argument=\
aoqi@0 181 -A requires an argument; use ''-Akey'' or ''-Akey=value''
aoqi@0 182 javac.err.invalid.arg=\
aoqi@0 183 invalid argument: {0}
aoqi@0 184 javac.err.invalid.A.key=\
aoqi@0 185 key in annotation processor option ''{0}'' is not a dot-separated sequence of identifiers
aoqi@0 186 javac.err.invalid.flag=\
aoqi@0 187 invalid flag: {0}
aoqi@0 188 javac.err.profile.bootclasspath.conflict=\
aoqi@0 189 profile and bootclasspath options cannot be used together
aoqi@0 190 javac.err.invalid.profile=\
aoqi@0 191 invalid profile: {0}
aoqi@0 192 javac.err.invalid.target=\
aoqi@0 193 invalid target release: {0}
aoqi@0 194 javac.err.no.source.files=\
aoqi@0 195 no source files
aoqi@0 196 javac.err.no.source.files.classes=\
aoqi@0 197 no source files or class names
aoqi@0 198 javac.err.req.arg=\
aoqi@0 199 {0} requires an argument
aoqi@0 200 javac.err.invalid.source=\
aoqi@0 201 invalid source release: {0}
aoqi@0 202 javac.err.error.writing.file=\
aoqi@0 203 error writing {0}; {1}
aoqi@0 204 javac.warn.source.target.conflict=\
aoqi@0 205 source release {0} requires target release {1}
aoqi@0 206 javac.warn.target.default.source.conflict=\
aoqi@0 207 target release {0} conflicts with default source release {1}
aoqi@0 208 javac.warn.profile.target.conflict=\
aoqi@0 209 profile {0} is not valid for target release {1}
aoqi@0 210 javac.err.dir.not.found=\
aoqi@0 211 directory not found: {0}
aoqi@0 212 javac.err.file.not.found=\
aoqi@0 213 file not found: {0}
aoqi@0 214 javac.err.file.not.directory=\
aoqi@0 215 not a directory: {0}
aoqi@0 216 javac.err.file.not.file=\
aoqi@0 217 not a file: {0}
aoqi@0 218 javac.msg.plugin.not.found=\
aoqi@0 219 plug-in not found: {0}
aoqi@0 220 ## messages
aoqi@0 221
aoqi@0 222 javac.msg.usage.header=\
aoqi@0 223 Usage: {0} <options> <source files>\n\
aoqi@0 224 where possible options include:
aoqi@0 225
aoqi@0 226 javac.msg.usage=\
aoqi@0 227 Usage: {0} <options> <source files>\n\
aoqi@0 228 use -help for a list of possible options
aoqi@0 229
aoqi@0 230 javac.msg.usage.nonstandard.footer=\
aoqi@0 231 These options are non-standard and subject to change without notice.
aoqi@0 232
aoqi@0 233 javac.msg.bug=\
aoqi@0 234 An exception has occurred in the compiler ({0}). \
darcy@2795 235 Please file a bug at the Java Bug Database (http://bugreport.java.com/bugreport/) \
darcy@2795 236 after checking the database for duplicates. \
aoqi@0 237 Include your program and the following diagnostic in your report. Thank you.
aoqi@0 238
aoqi@0 239 javac.msg.io=\
aoqi@0 240 \n\nAn input/output error occurred.\n\
aoqi@0 241 Consult the following stack trace for details.\n
aoqi@0 242
aoqi@0 243 javac.msg.proc.annotation.uncaught.exception=\
aoqi@0 244 \n\nAn annotation processor threw an uncaught exception.\n\
aoqi@0 245 Consult the following stack trace for details.\n
aoqi@0 246
aoqi@0 247 javac.msg.plugin.uncaught.exception=\
aoqi@0 248 \n\nA plugin threw an uncaught exception.\n\
aoqi@0 249 Consult the following stack trace for details.\n
aoqi@0 250
aoqi@0 251 javac.msg.resource=\
aoqi@0 252 \n\nThe system is out of resources.\n\
aoqi@0 253 Consult the following stack trace for details.\n
aoqi@0 254
aoqi@0 255 javac.version={0} {1}
aoqi@0 256 javac.fullVersion={0} full version "{1}"

mercurial