< prev index next >

langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/resources/javac.properties

Print this page




 148     Stop after each error
 149 javac.opt.s=\
 150     Emit java sources instead of classfiles
 151 javac.opt.version=\
 152     Version information
 153 javac.opt.arg.pathname=\
 154     <pathname>
 155 javac.opt.arg.file=\
 156     <filename>
 157 javac.opt.Xbootclasspath.p=\
 158     Prepend to the bootstrap class path
 159 javac.opt.Xbootclasspath.a=\
 160     Append to the bootstrap class path
 161 javac.opt.Xlint=\
 162     Enable recommended warnings
 163 javac.opt.Xlint.all=\
 164     Enable all warnings
 165 javac.opt.Xlint.none=\
 166     Disable all warnings
 167 #L10N: do not localize: -Xlint
 168 javac.opt.Xlint.subopts=\
 169     -Xlint:key,...
 170 javac.opt.Xlint.suboptlist=\n\
 171 \        Warnings to enable or disable, separated by comma.\n\
 172 \        Precede a key by '-' to disable the specified warning.\n\
 173 \        Supported keys are:
 174 javac.opt.Xlint.desc.auxiliaryclass=\
 175     Warn about an auxiliary class that is hidden in a source file, and is used from other files.
 176 
 177 javac.opt.Xlint.desc.cast=\
 178     Warn about use of unnecessary casts.
 179 
 180 javac.opt.Xlint.desc.classfile=\
 181     Warn about issues related to classfile contents.
 182 
 183 javac.opt.Xlint.desc.deprecation=\
 184     Warn about use of deprecated items.
 185 
 186 javac.opt.Xlint.desc.dep-ann=\
 187     Warn about items marked as deprecated in JavaDoc but not using the @Deprecated annotation.
 188 
 189 javac.opt.Xlint.desc.divzero=\
 190     Warn about division by constant integer 0.
 191 
 192 javac.opt.Xlint.desc.empty=\
 193     Warn about empty statement after if.


 222 javac.opt.Xlint.desc.static=\
 223     Warn about accessing a static member using an instance.
 224 
 225 javac.opt.Xlint.desc.try=\
 226     Warn about issues relating to use of try blocks (i.e. try-with-resources).
 227 
 228 javac.opt.Xlint.desc.unchecked=\
 229     Warn about unchecked operations.
 230 
 231 javac.opt.Xlint.desc.varargs=\
 232     Warn about potentially unsafe vararg methods
 233 
 234 javac.opt.Xdoclint=\
 235     Enable recommended checks for problems in javadoc comments
 236 # L10N: do not localize: all none
 237 javac.opt.Xdoclint.subopts = \
 238     (all|none|[-]<group>)[/<access>]
 239 
 240 # L10N: do not localize: accessibility html missing reference syntax
 241 # L10N: do not localize: public protected package private
 242 javac.opt.Xdoclint.custom=\n\
 243 \        Enable or disable specific checks for problems in javadoc comments,\n\
 244 \        where <group> is one of accessibility, html, missing, reference, or syntax,\n\
 245 \        and <access> is one of public, protected, package, or private.
 246 
 247 javac.opt.Xdoclint.package.args = \
 248     ([-]<packages>)
 249 
 250 javac.opt.Xdoclint.package.desc=\n\
 251 \        Enable or disable checks in specific packages. <packages> is a comma separated\n\
 252 \        list of package specifiers. Package specifier is either a qualified name of a package\n\
 253 \        or a package name prefix followed by '.*', which expands to all sub-packages of\n\
 254 \        the given package. Prefix the package specifier with '-' to disable checks for\n\
 255 \        the specified packages.
 256 
 257 javac.opt.Xstdout=\
 258     Redirect standard output
 259 javac.opt.X=\
 260     Print a synopsis of nonstandard options
 261 javac.opt.help=\
 262     Print a synopsis of standard options
 263 javac.opt.print=\
 264     Print out a textual representation of specified types
 265 javac.opt.printRounds=\
 266     Print information about rounds of annotation processing
 267 javac.opt.printProcessorInfo=\
 268     Print information about which annotations a processor is asked to process
 269 javac.opt.userpathsfirst=\
 270     Search classpath and sourcepath for classes before the bootclasspath instead of after
 271 javac.opt.prefer=\
 272     Specify which file to read when both a source file and class file are found for an implicitly compiled class
 273 javac.opt.AT=\
 274     Read options and filenames from file
 275 javac.opt.diags=\
 276     Select a diagnostic mode
 277 javac.opt.addExports=\n\
 278 \        Specify a package to be considered as exported from its defining module\n\
 279 \        to additional modules, or to all unnamed modules if <other-module> is ALL-UNNAMED.
 280 javac.opt.arg.addExports=\
 281     <module>/<package>=<other-module>(,<other-module>)*
 282 javac.opt.addReads=\n\
 283 \        Specify additional modules to be considered as required by a given module.\n\
 284 \        <other-module> may be ALL-UNNAMED to require the unnamed module.
 285 javac.opt.arg.addReads=\
 286     <module>=<other-module>(,<other-module>)*
 287 javac.opt.patch=\n\
 288 \        Override or augment a module with classes and resources\n\
 289 \        in JAR files or directories
 290 javac.opt.arg.patch=\
 291     <module>=<file>(:<file>)*
 292 javac.opt.module=\
 293     Specify a module to which the classes being compiled belong.
 294 javac.opt.arg.module=\
 295     <module-name>
 296 javac.opt.addmods=\n\
 297 \        Root modules to resolve in addition to the initial modules, or all modules\n\
 298 \        on the module path if <module> is ALL-MODULE-PATH.
 299 javac.opt.arg.addmods=\
 300     <module>(,<module>)*
 301 javac.opt.limitmods=\
 302     Limit the universe of observable modules
 303 javac.opt.arg.limitmods=\
 304     <module>(,<module>)*


 305 
 306 ## errors
 307 
 308 javac.err.empty.A.argument=\
 309     -A requires an argument; use ''-Akey'' or ''-Akey=value''
 310 javac.err.invalid.arg=\
 311     invalid argument: {0}
 312 javac.err.invalid.A.key=\
 313      key in annotation processor option ''{0}'' is not a dot-separated sequence of identifiers
 314 javac.err.invalid.flag=\
 315     invalid flag: {0}
 316 javac.err.profile.bootclasspath.conflict=\
 317     profile and bootclasspath options cannot be used together
 318 javac.err.invalid.profile=\
 319     invalid profile: {0}
 320 javac.err.invalid.target=\
 321     invalid target release: {0}
 322 javac.err.option.not.allowed.with.target=\
 323     option {0} not allowed with target {1}
 324 javac.err.option.too.many=\
 325     option {0} can only be specified once
 326 javac.err.no.source.files=\
 327     no source files
 328 javac.err.no.source.files.classes=\
 329     no source files or class names
 330 javac.err.req.arg=\
 331     {0} requires an argument
 332 javac.err.invalid.source=\
 333     invalid source release: {0}
 334 javac.err.error.writing.file=\
 335     error writing {0}; {1}
 336 javac.err.sourcepath.modulesourcepath.conflict=\
 337     cannot specify both -sourcepath and -modulesourcepath
 338 javac.warn.source.target.conflict=\
 339     source release {0} requires target release {1}
 340 javac.warn.target.default.source.conflict=\
 341     target release {0} conflicts with default source release {1}
 342 javac.warn.profile.target.conflict=\
 343     profile {0} is not valid for target release {1}
 344 javac.err.file.not.found=\
 345     file not found: {0}
 346 javac.err.file.not.directory=\
 347     not a directory: {0}
 348 javac.err.file.not.file=\
 349     not a file: {0}


 350 
 351 ## messages
 352 
 353 javac.msg.usage.header=\
 354 Usage: {0} <options> <source files>\n\
 355 where possible options include:
 356 
 357 javac.msg.usage=\
 358     Usage: {0} <options> <source files>\n\
 359     use -help for a list of possible options
 360 
 361 javac.msg.usage.nonstandard.footer=\
 362 These options are non-standard and subject to change without notice.
 363 
 364 javac.msg.bug=\
 365 An exception has occurred in the compiler ({0}). \
 366 Please file a bug against the Java compiler via the Java bug reporting page (http://bugreport.java.com) \
 367 after checking the Bug Database (http://bugs.java.com) for duplicates. \
 368 Include your program and the following diagnostic in your report. Thank you.
 369 
 370 javac.msg.io=\
 371 \n\nAn input/output error occurred.\n\
 372 Consult the following stack trace for details.\n
 373 
 374 javac.msg.proc.annotation.uncaught.exception=\
 375 \n\nAn annotation processor threw an uncaught exception.\n\
 376 Consult the following stack trace for details.\n
 377 
 378 javac.msg.plugin.uncaught.exception=\
 379 \n\nA plugin threw an uncaught exception.\n\


 148     Stop after each error
 149 javac.opt.s=\
 150     Emit java sources instead of classfiles
 151 javac.opt.version=\
 152     Version information
 153 javac.opt.arg.pathname=\
 154     <pathname>
 155 javac.opt.arg.file=\
 156     <filename>
 157 javac.opt.Xbootclasspath.p=\
 158     Prepend to the bootstrap class path
 159 javac.opt.Xbootclasspath.a=\
 160     Append to the bootstrap class path
 161 javac.opt.Xlint=\
 162     Enable recommended warnings
 163 javac.opt.Xlint.all=\
 164     Enable all warnings
 165 javac.opt.Xlint.none=\
 166     Disable all warnings
 167 #L10N: do not localize: -Xlint
 168 javac.opt.arg.Xlint=\
 169     <key>(,<key>)*
 170 javac.opt.Xlint.custom=\
 171     Warnings to enable or disable, separated by comma.\n\
 172     Precede a key by '-' to disable the specified warning.\n\
 173     Supported keys are:
 174 javac.opt.Xlint.desc.auxiliaryclass=\
 175     Warn about an auxiliary class that is hidden in a source file, and is used from other files.
 176 
 177 javac.opt.Xlint.desc.cast=\
 178     Warn about use of unnecessary casts.
 179 
 180 javac.opt.Xlint.desc.classfile=\
 181     Warn about issues related to classfile contents.
 182 
 183 javac.opt.Xlint.desc.deprecation=\
 184     Warn about use of deprecated items.
 185 
 186 javac.opt.Xlint.desc.dep-ann=\
 187     Warn about items marked as deprecated in JavaDoc but not using the @Deprecated annotation.
 188 
 189 javac.opt.Xlint.desc.divzero=\
 190     Warn about division by constant integer 0.
 191 
 192 javac.opt.Xlint.desc.empty=\
 193     Warn about empty statement after if.


 222 javac.opt.Xlint.desc.static=\
 223     Warn about accessing a static member using an instance.
 224 
 225 javac.opt.Xlint.desc.try=\
 226     Warn about issues relating to use of try blocks (i.e. try-with-resources).
 227 
 228 javac.opt.Xlint.desc.unchecked=\
 229     Warn about unchecked operations.
 230 
 231 javac.opt.Xlint.desc.varargs=\
 232     Warn about potentially unsafe vararg methods
 233 
 234 javac.opt.Xdoclint=\
 235     Enable recommended checks for problems in javadoc comments
 236 # L10N: do not localize: all none
 237 javac.opt.Xdoclint.subopts = \
 238     (all|none|[-]<group>)[/<access>]
 239 
 240 # L10N: do not localize: accessibility html missing reference syntax
 241 # L10N: do not localize: public protected package private
 242 javac.opt.Xdoclint.custom=\
 243     Enable or disable specific checks for problems in javadoc comments,\n\
 244     where <group> is one of accessibility, html, missing, reference, or syntax,\n\
 245     and <access> is one of public, protected, package, or private.
 246 
 247 javac.opt.Xdoclint.package.args = \
 248     [-]<packages>(,[-]<package>)*
 249 
 250 javac.opt.Xdoclint.package.desc=\
 251     Enable or disable checks in specific packages. Each <package> is either the\n\
 252     qualified name of a package or a package name prefix followed by '.*', which\n\
 253     expands to all sub-packages of the given package. Each <package> can be prefixed\n\
 254     with '-' to disable checks for the specified package or packages.

 255 
 256 javac.opt.Xstdout=\
 257     Redirect standard output
 258 javac.opt.X=\
 259     Print a synopsis of nonstandard options
 260 javac.opt.help=\
 261     Print a synopsis of standard options
 262 javac.opt.print=\
 263     Print out a textual representation of specified types
 264 javac.opt.printRounds=\
 265     Print information about rounds of annotation processing
 266 javac.opt.printProcessorInfo=\
 267     Print information about which annotations a processor is asked to process
 268 javac.opt.userpathsfirst=\
 269     Search classpath and sourcepath for classes before the bootclasspath instead of after
 270 javac.opt.prefer=\
 271     Specify which file to read when both a source file and class file are found for an implicitly compiled class
 272 javac.opt.AT=\
 273     Read options and filenames from file
 274 javac.opt.diags=\
 275     Select a diagnostic mode
 276 javac.opt.addExports=\
 277     Specify a package to be considered as exported from its defining module\n\
 278     to additional modules, or to all unnamed modules if <other-module> is ALL-UNNAMED.
 279 javac.opt.arg.addExports=\
 280     <module>/<package>=<other-module>(,<other-module>)*
 281 javac.opt.addReads=\
 282     Specify additional modules to be considered as required by a given module.\n\
 283     <other-module> may be ALL-UNNAMED to require the unnamed module.
 284 javac.opt.arg.addReads=\
 285     <module>=<other-module>(,<other-module>)*
 286 javac.opt.patch=\
 287     Override or augment a module with classes and resources\n\
 288     in JAR files or directories
 289 javac.opt.arg.patch=\
 290     <module>=<file>(:<file>)*
 291 javac.opt.module=\
 292     Specify a module to which the classes being compiled belong.
 293 javac.opt.arg.module=\
 294     <module>
 295 javac.opt.addmods=\
 296     Root modules to resolve in addition to the initial modules, or all modules\n\
 297     on the module path if <module> is ALL-MODULE-PATH.
 298 javac.opt.arg.addmods=\
 299     <module>(,<module>)*
 300 javac.opt.limitmods=\
 301     Limit the universe of observable modules
 302 javac.opt.arg.limitmods=\
 303     <module>(,<module>)*
 304 javac.opt.inherit_runtime_environment=\
 305     Inherit module system configuration options from the runtime environment.
 306 
 307 ## errors
 308 
 309 javac.err.empty.A.argument=\
 310     -A requires an argument; use ''-Akey'' or ''-Akey=value''
 311 javac.err.invalid.arg=\
 312     invalid argument: {0}
 313 javac.err.invalid.A.key=\
 314      key in annotation processor option ''{0}'' is not a dot-separated sequence of identifiers
 315 javac.err.invalid.flag=\
 316     invalid flag: {0}
 317 javac.err.profile.bootclasspath.conflict=\
 318     profile and bootclasspath options cannot be used together
 319 javac.err.invalid.profile=\
 320     invalid profile: {0}
 321 javac.err.invalid.target=\
 322     invalid target release: {0}
 323 javac.err.option.not.allowed.with.target=\
 324     option {0} not allowed with target {1}
 325 javac.err.option.too.many=\
 326     option {0} can only be specified once
 327 javac.err.no.source.files=\
 328     no source files
 329 javac.err.no.source.files.classes=\
 330     no source files or class names
 331 javac.err.req.arg=\
 332     {0} requires an argument
 333 javac.err.invalid.source=\
 334     invalid source release: {0}
 335 javac.err.error.writing.file=\
 336     error writing {0}; {1}
 337 javac.err.sourcepath.modulesourcepath.conflict=\
 338     cannot specify both --source-path and --module-source-path
 339 javac.warn.source.target.conflict=\
 340     source release {0} requires target release {1}
 341 javac.warn.target.default.source.conflict=\
 342     target release {0} conflicts with default source release {1}
 343 javac.warn.profile.target.conflict=\
 344     profile {0} is not valid for target release {1}
 345 javac.err.file.not.found=\
 346     file not found: {0}
 347 javac.err.file.not.directory=\
 348     not a directory: {0}
 349 javac.err.file.not.file=\
 350     not a file: {0}
 351 javac.err.cannot.access.runtime.env=\
 352     cannot access runtime environment
 353 
 354 ## messages
 355 
 356 javac.msg.usage.header=\
 357 Usage: {0} <options> <source files>\n\
 358 where possible options include:
 359 
 360 javac.msg.usage=\
 361     Usage: {0} <options> <source files>\n\
 362     use --help for a list of possible options
 363 
 364 javac.msg.usage.nonstandard.footer=\
 365 These options are non-standard and subject to change without notice.
 366 
 367 javac.msg.bug=\
 368 An exception has occurred in the compiler ({0}). \
 369 Please file a bug against the Java compiler via the Java bug reporting page (http://bugreport.java.com) \
 370 after checking the Bug Database (http://bugs.java.com) for duplicates. \
 371 Include your program and the following diagnostic in your report. Thank you.
 372 
 373 javac.msg.io=\
 374 \n\nAn input/output error occurred.\n\
 375 Consult the following stack trace for details.\n
 376 
 377 javac.msg.proc.annotation.uncaught.exception=\
 378 \n\nAn annotation processor threw an uncaught exception.\n\
 379 Consult the following stack trace for details.\n
 380 
 381 javac.msg.plugin.uncaught.exception=\
 382 \n\nA plugin threw an uncaught exception.\n\
< prev index next >