--- a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/resources/javac.properties Wed Aug 10 13:52:02 2016 -0700
+++ b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/resources/javac.properties Wed Aug 10 15:47:46 2016 -0700
@@ -165,12 +165,12 @@
javac.opt.Xlint.none=\
Disable all warnings
#L10N: do not localize: -Xlint
-javac.opt.Xlint.subopts=\
- -Xlint:key,...
-javac.opt.Xlint.suboptlist=\n\
-\ Warnings to enable or disable, separated by comma.\n\
-\ Precede a key by '-' to disable the specified warning.\n\
-\ Supported keys are:
+javac.opt.arg.Xlint=\
+ <key>(,<key>)*
+javac.opt.Xlint.custom=\
+ Warnings to enable or disable, separated by comma.\n\
+ Precede a key by '-' to disable the specified warning.\n\
+ Supported keys are:
javac.opt.Xlint.desc.auxiliaryclass=\
Warn about an auxiliary class that is hidden in a source file, and is used from other files.
@@ -239,20 +239,19 @@
# L10N: do not localize: accessibility html missing reference syntax
# L10N: do not localize: public protected package private
-javac.opt.Xdoclint.custom=\n\
-\ Enable or disable specific checks for problems in javadoc comments,\n\
-\ where <group> is one of accessibility, html, missing, reference, or syntax,\n\
-\ and <access> is one of public, protected, package, or private.
+javac.opt.Xdoclint.custom=\
+ Enable or disable specific checks for problems in javadoc comments,\n\
+ where <group> is one of accessibility, html, missing, reference, or syntax,\n\
+ and <access> is one of public, protected, package, or private.
javac.opt.Xdoclint.package.args = \
- ([-]<packages>)
+ [-]<packages>(,[-]<package>)*
-javac.opt.Xdoclint.package.desc=\n\
-\ Enable or disable checks in specific packages. <packages> is a comma separated\n\
-\ list of package specifiers. Package specifier is either a qualified name of a package\n\
-\ or a package name prefix followed by '.*', which expands to all sub-packages of\n\
-\ the given package. Prefix the package specifier with '-' to disable checks for\n\
-\ the specified packages.
+javac.opt.Xdoclint.package.desc=\
+ Enable or disable checks in specific packages. Each <package> is either the\n\
+ qualified name of a package or a package name prefix followed by '.*', which\n\
+ expands to all sub-packages of the given package. Each <package> can be prefixed\n\
+ with '-' to disable checks for the specified package or packages.
javac.opt.Xstdout=\
Redirect standard output
@@ -274,34 +273,36 @@
Read options and filenames from file
javac.opt.diags=\
Select a diagnostic mode
-javac.opt.addExports=\n\
-\ Specify a package to be considered as exported from its defining module\n\
-\ to additional modules, or to all unnamed modules if <other-module> is ALL-UNNAMED.
+javac.opt.addExports=\
+ Specify a package to be considered as exported from its defining module\n\
+ to additional modules, or to all unnamed modules if <other-module> is ALL-UNNAMED.
javac.opt.arg.addExports=\
<module>/<package>=<other-module>(,<other-module>)*
-javac.opt.addReads=\n\
-\ Specify additional modules to be considered as required by a given module.\n\
-\ <other-module> may be ALL-UNNAMED to require the unnamed module.
+javac.opt.addReads=\
+ Specify additional modules to be considered as required by a given module.\n\
+ <other-module> may be ALL-UNNAMED to require the unnamed module.
javac.opt.arg.addReads=\
<module>=<other-module>(,<other-module>)*
-javac.opt.patch=\n\
-\ Override or augment a module with classes and resources\n\
-\ in JAR files or directories
+javac.opt.patch=\
+ Override or augment a module with classes and resources\n\
+ in JAR files or directories
javac.opt.arg.patch=\
<module>=<file>(:<file>)*
javac.opt.module=\
Specify a module to which the classes being compiled belong.
javac.opt.arg.module=\
- <module-name>
-javac.opt.addmods=\n\
-\ Root modules to resolve in addition to the initial modules, or all modules\n\
-\ on the module path if <module> is ALL-MODULE-PATH.
+ <module>
+javac.opt.addmods=\
+ Root modules to resolve in addition to the initial modules, or all modules\n\
+ on the module path if <module> is ALL-MODULE-PATH.
javac.opt.arg.addmods=\
<module>(,<module>)*
javac.opt.limitmods=\
Limit the universe of observable modules
javac.opt.arg.limitmods=\
<module>(,<module>)*
+javac.opt.inherit_runtime_environment=\
+ Inherit module system configuration options from the runtime environment.
## errors
@@ -334,7 +335,7 @@
javac.err.error.writing.file=\
error writing {0}; {1}
javac.err.sourcepath.modulesourcepath.conflict=\
- cannot specify both -sourcepath and -modulesourcepath
+ cannot specify both --source-path and --module-source-path
javac.warn.source.target.conflict=\
source release {0} requires target release {1}
javac.warn.target.default.source.conflict=\
@@ -347,6 +348,8 @@
not a directory: {0}
javac.err.file.not.file=\
not a file: {0}
+javac.err.cannot.access.runtime.env=\
+ cannot access runtime environment
## messages
@@ -356,7 +359,7 @@
javac.msg.usage=\
Usage: {0} <options> <source files>\n\
- use -help for a list of possible options
+ use --help for a list of possible options
javac.msg.usage.nonstandard.footer=\
These options are non-standard and subject to change without notice.