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

Tue, 29 Sep 2015 21:22:35 +0200

author
jlahoda
date
Tue, 29 Sep 2015 21:22:35 +0200
changeset 2907
aec633bcb3af
parent 2795
1500756ea2b8
child 3295
859dc787b52b
permissions
-rw-r--r--

8133454: Update Java Compiler Error Message
Summary: Updating the error message that is used when javac crashes.
Reviewed-by: jjg
Contributed-by: nelson.dcosta@oracle.com

     1 #
     2 # Copyright (c) 1999, 2013, 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 #
    26 ## standard options
    28 javac.opt.g=\
    29     Generate all debugging info
    30 javac.opt.g.none=\
    31     Generate no debugging info
    32 javac.opt.g.lines.vars.source=\
    33     Generate only some debugging info
    34 javac.opt.nowarn=\
    35     Generate no warnings
    36 javac.opt.verbose=\
    37     Output messages about what the compiler is doing
    38 javac.opt.deprecation=\
    39     Output source locations where deprecated APIs are used
    40 javac.opt.classpath=\
    41     Specify where to find user class files and annotation processors
    42 javac.opt.sourcepath=\
    43     Specify where to find input source files
    44 javac.opt.bootclasspath=\
    45     Override location of bootstrap class files
    46 javac.opt.Xbootclasspath.p=\
    47     Prepend to the bootstrap class path
    48 javac.opt.Xbootclasspath.a=\
    49     Append to the bootstrap class path
    50 javac.opt.endorseddirs=\
    51     Override location of endorsed standards path
    52 javac.opt.extdirs=\
    53     Override location of installed extensions
    54 javac.opt.processorpath=\
    55     Specify where to find annotation processors
    56 javac.opt.processor=\
    57     Names of the annotation processors to run; bypasses default discovery process
    58 javac.opt.parameters=\
    59     Generate metadata for reflection on method parameters
    60 javac.opt.proc.none.only=\
    61     Control whether annotation processing and/or compilation is done.
    62 javac.opt.d=\
    63     Specify where to place generated class files
    64 javac.opt.sourceDest=\
    65     Specify where to place generated source files
    66 javac.opt.headerDest=\
    67     Specify where to place generated native header files
    68 javac.opt.J=\
    69     Pass <flag> directly to the runtime system
    70 javac.opt.encoding=\
    71     Specify character encoding used by source files
    72 javac.opt.profile=\
    73     Check that API used is available in the specified profile
    74 javac.opt.target=\
    75     Generate class files for specific VM version
    76 javac.opt.source=\
    77     Provide source compatibility with specified release
    78 javac.opt.Werror=\
    79     Terminate compilation if warnings occur
    80 javac.opt.A=\
    81     Options to pass to annotation processors
    82 javac.opt.implicit=\
    83     Specify whether or not to generate class files for implicitly referenced files
    84 javac.opt.pkginfo=\
    85     Specify handling of package-info files
    86 javac.opt.arg.class=\
    87     <class>
    88 javac.opt.arg.class.list=\
    89     <class1>[,<class2>,<class3>...]
    90 javac.opt.arg.flag=\
    91     <flag>
    92 javac.opt.arg.key.equals.value=\
    93     key[=value]
    94 javac.opt.arg.path=\
    95     <path>
    96 javac.opt.arg.dirs=\
    97     <dirs>
    98 javac.opt.arg.directory=\
    99     <directory>
   100 javac.opt.arg.encoding=\
   101     <encoding>
   102 javac.opt.arg.profile=\
   103     <profile>
   104 javac.opt.arg.release=\
   105     <release>
   106 javac.opt.arg.number=\
   107     <number>
   108 javac.opt.plugin=\
   109     Name and optional arguments for a plug-in to be run
   110 javac.opt.arg.plugin=\
   111     "name args"
   113 ## extended options
   115 javac.opt.maxerrs=\
   116     Set the maximum number of errors to print
   117 javac.opt.maxwarns=\
   118     Set the maximum number of warnings to print
   119 javac.opt.nogj=\
   120     Don't accept generics in the language
   121 javac.opt.moreinfo=\
   122     Print extended information for type variables
   123 javac.opt.printflat=\
   124     Print abstract syntax tree after inner class conversion
   125 javac.opt.printsearch=\
   126     Print information where classfiles are searched
   127 javac.opt.prompt=\
   128     Stop after each error
   129 javac.opt.retrofit=\
   130     Retrofit existing classfiles with generic types
   131 javac.opt.s=\
   132     Emit java sources instead of classfiles
   133 javac.opt.scramble=\
   134     Scramble private identifiers in bytecode
   135 javac.opt.scrambleall=\
   136     Scramble package visible identifiers in bytecode
   137 javac.opt.version=\
   138     Version information
   139 javac.opt.arg.pathname=\
   140     <pathname>
   141 javac.opt.arg.file=\
   142     <filename>
   143 javac.opt.Xlint=\
   144     Enable recommended warnings
   145 javac.opt.Xlint.suboptlist=\
   146     Enable or disable specific warnings
   147 javac.opt.Xdoclint=\
   148     Enable recommended checks for problems in javadoc comments
   149 # L10N: do not localize: all none
   150 javac.opt.Xdoclint.subopts = \
   151     (all|none|[-]<group>)[/<access>]
   153 # L10N: do not localize: accessibility html missing reference syntax
   154 # L10N: do not localize: public protected package private
   155 javac.opt.Xdoclint.custom=\n\
   156 \        Enable or disable specific checks for problems in javadoc comments,\n\
   157 \        where <group> is one of accessibility, html, missing, reference, or syntax,\n\
   158 \        and <access> is one of public, protected, package, or private.
   159 javac.opt.Xstdout=\
   160     Redirect standard output
   161 javac.opt.X=\
   162     Print a synopsis of nonstandard options
   163 javac.opt.help=\
   164     Print a synopsis of standard options
   165 javac.opt.print=\
   166     Print out a textual representation of specified types
   167 javac.opt.printRounds=\
   168     Print information about rounds of annotation processing
   169 javac.opt.printProcessorInfo=\
   170     Print information about which annotations a processor is asked to process
   171 javac.opt.prefer=\
   172     Specify which file to read when both a source file and class file are found for an implicitly compiled class
   173 javac.opt.AT=\
   174     Read options and filenames from file
   175 javac.opt.diags=\
   176     Select a diagnostic mode
   178 ## errors
   180 javac.err.empty.A.argument=\
   181     -A requires an argument; use ''-Akey'' or ''-Akey=value''
   182 javac.err.invalid.arg=\
   183     invalid argument: {0}
   184 javac.err.invalid.A.key=\
   185      key in annotation processor option ''{0}'' is not a dot-separated sequence of identifiers
   186 javac.err.invalid.flag=\
   187     invalid flag: {0}
   188 javac.err.profile.bootclasspath.conflict=\
   189     profile and bootclasspath options cannot be used together
   190 javac.err.invalid.profile=\
   191     invalid profile: {0}
   192 javac.err.invalid.target=\
   193     invalid target release: {0}
   194 javac.err.no.source.files=\
   195     no source files
   196 javac.err.no.source.files.classes=\
   197     no source files or class names
   198 javac.err.req.arg=\
   199     {0} requires an argument
   200 javac.err.invalid.source=\
   201     invalid source release: {0}
   202 javac.err.error.writing.file=\
   203     error writing {0}; {1}
   204 javac.warn.source.target.conflict=\
   205     source release {0} requires target release {1}
   206 javac.warn.target.default.source.conflict=\
   207     target release {0} conflicts with default source release {1}
   208 javac.warn.profile.target.conflict=\
   209     profile {0} is not valid for target release {1}
   210 javac.err.dir.not.found=\
   211     directory not found: {0}
   212 javac.err.file.not.found=\
   213     file not found: {0}
   214 javac.err.file.not.directory=\
   215     not a directory: {0}
   216 javac.err.file.not.file=\
   217     not a file: {0}
   218 javac.msg.plugin.not.found=\
   219     plug-in not found: {0}
   220 ## messages
   222 javac.msg.usage.header=\
   223 Usage: {0} <options> <source files>\n\
   224 where possible options include:
   226 javac.msg.usage=\
   227     Usage: {0} <options> <source files>\n\
   228     use -help for a list of possible options
   230 javac.msg.usage.nonstandard.footer=\
   231 These options are non-standard and subject to change without notice.
   233 javac.msg.bug=\
   234 An exception has occurred in the compiler ({0}). \
   235 Please file a bug against the Java compiler via the Java bug reporting page (http://bugreport.java.com) \
   236 after checking the Bug Database (http://bugs.java.com) for duplicates. \
   237 Include your program and the following diagnostic in your report. Thank you.
   239 javac.msg.io=\
   240 \n\nAn input/output error occurred.\n\
   241 Consult the following stack trace for details.\n
   243 javac.msg.proc.annotation.uncaught.exception=\
   244 \n\nAn annotation processor threw an uncaught exception.\n\
   245 Consult the following stack trace for details.\n
   247 javac.msg.plugin.uncaught.exception=\
   248 \n\nA plugin threw an uncaught exception.\n\
   249 Consult the following stack trace for details.\n
   251 javac.msg.resource=\
   252 \n\nThe system is out of resources.\n\
   253 Consult the following stack trace for details.\n
   255 javac.version={0} {1}
   256 javac.fullVersion={0} full version "{1}"

mercurial