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

Fri, 24 Jun 2011 13:52:14 -0700

author
darcy
date
Fri, 24 Jun 2011 13:52:14 -0700
changeset 1048
f74e4269a50a
parent 993
4caf17560ae0
child 1061
e427c42e1a7e
permissions
-rw-r--r--

6575445: Update annotation processor to only use java.util.ServiceLoader
Reviewed-by: jjg

     1 #
     2 # Copyright (c) 1999, 2011, 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 # Messages in this file which use "placeholders" for values (e.g. {0}, {1})
    27 # are preceded by a stylized comment describing the type of the corresponding
    28 # values.
    29 # The types currently in use are
    30 #
    31 # boolean           true or false
    32 # file name         the name of an input file; e.g.   MyFile.java
    33 # message segment   a sub-message; see compiler.misc.*
    34 # modifier          a Java modifier; e.g. public, private, protected
    35 # name              a name, typically a Java identifier
    36 # number            an integer
    37 # option name       the name of a command line option
    38 # source version    a source version number, such as 1.5, 1.6, 1.7
    39 # string            a general string
    40 # symbol            the name of a declared type
    41 # symbol kind       a description of the kind of a declaration; see compiler.misc.kindname.*
    42 # token             the name of a non-terminal in source code; see compiler.misc.token.*
    43 # type              a Java type; e.g. int, X, X<T>
    44 # unused            the value is not used in this message
    45 #
    46 # list of X         a comma-separated list of items; e.g. list of type
    47 # X or Y            alternation; e.g. message segment or type
    48 # set of X          a comma-separated collection of items; e.g. set of modifier
    49 #
    50 # These may be composed: e.g.   list of type or message segment
    51 #
    52 # These comments are verified by the jtreg test test/tools/javac/diags/MessageInfo,
    53 # using info derived from the collected set of examples in test/tools/javac/diags/examples.
    54 # MessageInfo can also be run as a standalone utility providing more facilities
    55 # for manipulating this file. For more details, see MessageInfo.java.
    57 ##
    58 ## errors
    59 ##
    61 # 0: symbol
    62 compiler.err.abstract.cant.be.instantiated=\
    63     {0} is abstract; cannot be instantiated
    65 compiler.err.abstract.meth.cant.have.body=\
    66     abstract methods cannot have a body
    68 compiler.err.already.annotated=\
    69     {0} {1} has already been annotated
    71 # 0: symbol, 1: symbol
    72 compiler.err.already.defined=\
    73     {0} is already defined in {1}
    75 # 0: string
    76 compiler.err.already.defined.single.import=\
    77     {0} is already defined in a single-type import
    79 # 0: string
    80 compiler.err.already.defined.static.single.import=\
    81     {0} is already defined in a static single-type import
    83 compiler.err.already.defined.this.unit=\
    84     {0} is already defined in this compilation unit
    86 # 0: type, 1: list of name
    87 compiler.err.annotation.missing.default.value=\
    88     annotation {0} is missing value for the attribute {1}
    90 # 0: type, 1: list of name
    91 compiler.err.annotation.missing.default.value.1=\
    92     annotation {0} is missing values for attributes {1}
    94 # 0: type
    95 compiler.err.annotation.not.valid.for.type=\
    96     annotation not valid for a value of type {0}
    98 compiler.err.annotation.type.not.applicable=\
    99     annotation type not applicable to this kind of declaration
   101 compiler.err.annotation.value.must.be.annotation=\
   102     annotation value must be an annotation
   104 compiler.err.annotation.value.must.be.class.literal=\
   105     annotation value must be a class literal
   107 compiler.err.annotation.value.must.be.name.value=\
   108     annotation values must be of the form ''name=value''
   110 compiler.err.annotation.value.not.allowable.type=\
   111     annotation value not of an allowable type
   113 compiler.err.anon.class.impl.intf.no.args=\
   114     anonymous class implements interface; cannot have arguments
   116 compiler.err.anon.class.impl.intf.no.typeargs=\
   117     anonymous class implements interface; cannot have type arguments
   119 compiler.err.anon.class.impl.intf.no.qual.for.new=\
   120     anonymous class implements interface; cannot have qualifier for new
   122 # 0: symbol, 1: symbol, 2: symbol
   123 compiler.err.array.and.varargs=\
   124     cannot declare both {0} and {1} in {2}
   126 compiler.err.array.dimension.missing=\
   127     array dimension missing
   129 # 0: type
   130 compiler.err.array.req.but.found=\
   131     array required, but {0} found
   133 compiler.err.assignment.from.super-bound=\
   134     assigning from wildcard {0}
   136 compiler.err.assignment.to.extends-bound=\
   137     assigning to wildcard {0}
   139 compiler.err.attribute.value.must.be.constant=\
   140     attribute value must be constant
   142 compiler.err.break.outside.switch.loop=\
   143     break outside switch or loop
   145 # 0: name
   146 compiler.err.call.must.be.first.stmt.in.ctor=\
   147     call to {0} must be first statement in constructor
   149 compiler.err.cant.apply.symbol=\
   150     {0} {1} in {4} {5} cannot be applied to given types\n\
   151     required: {2}\n\
   152     found: {3}
   154 # 0: symbol kind, 1: name, 2: list of type or message segment, 3: list of type or message segment, 4: symbol kind, 5: type, 6: message segment
   155 compiler.err.cant.apply.symbol.1=\
   156     {0} {1} in {4} {5} cannot be applied to given types;\n\
   157     required: {2}\n\
   158     found: {3}\n\
   159     reason: {6}
   161 # 0: symbol kind, 1: name, 2: list of type
   162 compiler.err.cant.apply.symbols=\
   163     no suitable {0} found for {1}({2})
   165 # 0: symbol
   166 compiler.err.cant.assign.val.to.final.var=\
   167     cannot assign a value to final variable {0}
   169 # 0: type
   170 compiler.err.cant.deref=\
   171     {0} cannot be dereferenced
   173 compiler.err.cant.extend.intf.annotation=\
   174     ''extends'' not allowed for @interfaces
   176 # 0: symbol
   177 compiler.err.cant.inherit.from.final=\
   178     cannot inherit from final {0}
   180 # 0: symbol
   181 compiler.err.cant.ref.before.ctor.called=\
   182     cannot reference {0} before supertype constructor has been called
   184 compiler.err.cant.ret.val.from.meth.decl.void=\
   185     cannot return a value from method whose result type is void
   187 compiler.err.cant.select.static.class.from.param.type=\
   188     cannot select a static class from a parameterized type
   190 # 0: symbol, 1: string, 2: string
   191 compiler.err.cant.inherit.diff.arg=\
   192     {0} cannot be inherited with different arguments: <{1}> and <{2}>
   194 compiler.err.catch.without.try=\
   195     ''catch'' without ''try''
   197 # 0: symbol kind, 1: symbol
   198 compiler.err.clash.with.pkg.of.same.name=\
   199     {0} {1} clashes with package of same name
   201 compiler.err.const.expr.req=\
   202     constant expression required
   204 compiler.err.cont.outside.loop=\
   205     continue outside of loop
   207 # 0: symbol
   208 compiler.err.cyclic.inheritance=\
   209     cyclic inheritance involving {0}
   211 compiler.err.cyclic.annotation.element=\
   212     cyclic annotation element type
   214 # 0: unused
   215 compiler.err.call.to.super.not.allowed.in.enum.ctor=\
   216     call to super not allowed in enum constructor
   218 # 0: type
   219 compiler.err.no.superclass=\
   220     {0} has no superclass
   222 compiler.err.wrong.target.for.polymorphic.signature.definition=\
   223     MethodHandle API building requires -target 7 runtimes or better; current is -target {0}
   225 # 0: symbol, 1: type, 2: symbol, 3: type, 4: unused
   226 compiler.err.concrete.inheritance.conflict=\
   227     methods {0} from {1} and {2} from {3} are inherited with the same signature
   229 compiler.err.default.allowed.in.intf.annotation.member=\
   230     default value only allowed in an @interface member
   232 # 0: symbol
   233 compiler.err.doesnt.exist=\
   234     package {0} does not exist
   236 compiler.err.duplicate.annotation=\
   237     duplicate annotation
   239 # 0: name, 1: type
   240 compiler.err.duplicate.annotation.member.value=\
   241     duplicate annotation member value {0} in {1}
   243 # 0: name
   244 compiler.err.duplicate.class=\
   245     duplicate class: {0}
   247 compiler.err.duplicate.case.label=\
   248     duplicate case label
   250 compiler.err.duplicate.default.label=\
   251     duplicate default label
   253 compiler.err.else.without.if=\
   254     ''else'' without ''if''
   256 compiler.err.empty.char.lit=\
   257     empty character literal
   259 # 0: symbol
   260 compiler.err.encl.class.required=\
   261     an enclosing instance that contains {0} is required
   263 compiler.err.enum.annotation.must.be.enum.constant=\
   264     an enum annotation value must be an enum constant
   266 compiler.err.enum.cant.be.instantiated=\
   267     enum types may not be instantiated
   269 compiler.err.enum.label.must.be.unqualified.enum=\
   270     an enum switch case label must be the unqualified name of an enumeration constant
   272 compiler.err.enum.no.subclassing=\
   273     classes cannot directly extend java.lang.Enum
   275 compiler.err.enum.types.not.extensible=\
   276     enum types are not extensible
   278 compiler.err.enum.no.finalize=\
   279     enums cannot have finalize methods
   281 # 0: file name, 1: string
   282 compiler.err.error.reading.file=\
   283     error reading {0}; {1}
   285 # 0: type
   286 compiler.err.except.already.caught=\
   287     exception {0} has already been caught
   289 # 0: type
   290 compiler.err.except.never.thrown.in.try=\
   291     exception {0} is never thrown in body of corresponding try statement
   293 # 0: symbol
   294 compiler.err.final.parameter.may.not.be.assigned=\
   295     final parameter {0} may not be assigned
   297 # 0: symbol
   298 compiler.err.try.resource.may.not.be.assigned=\
   299     auto-closeable resource {0} may not be assigned
   301 # 0: symbol
   302 compiler.err.multicatch.parameter.may.not.be.assigned=\
   303     multi-catch parameter {0} may not be assigned
   305 # 0: type, 1: type
   306 compiler.err.multicatch.types.must.be.disjoint=\
   307     Alternatives in a multi-catch statement cannot be related by subclassing\n\
   308     Alternative {0} is a subclass of alternative {1}
   310 compiler.err.finally.without.try=\
   311     ''finally'' without ''try''
   313 # 0: type, 1: message segment
   314 compiler.err.foreach.not.applicable.to.type=\
   315     for-each not applicable to expression type\n\
   316     required: {1}\n\
   317     found:    {0}
   319 compiler.err.fp.number.too.large=\
   320     floating point number too large
   322 compiler.err.fp.number.too.small=\
   323     floating point number too small
   325 compiler.err.generic.array.creation=\
   326     generic array creation
   328 compiler.err.generic.throwable=\
   329     a generic class may not extend java.lang.Throwable
   331 # 0: symbol
   332 compiler.err.icls.cant.have.static.decl=\
   333     Illegal static declaration in inner class {0}\n\
   334     modifier \''static\'' is only allowed in constant variable declarations
   336 # 0: string
   337 compiler.err.illegal.char=\
   338     illegal character: \\{0}
   340 compiler.err.illegal.char.for.encoding=\
   341     unmappable character for encoding {0}
   343 # 0: set of modifier, 1: set of modifier
   344 compiler.err.illegal.combination.of.modifiers=\
   345     illegal combination of modifiers: {0} and {1}
   347 compiler.err.illegal.enum.static.ref=\
   348     illegal reference to static field from initializer
   350 compiler.err.illegal.esc.char=\
   351     illegal escape character
   353 compiler.err.illegal.forward.ref=\
   354     illegal forward reference
   356 # 0: symbol
   357 compiler.warn.forward.ref=\
   358     reference to variable ''{0}'' before it has been initialized
   360 compiler.err.illegal.self.ref=\
   361     self-reference in initializer
   363 # 0: symbol
   364 compiler.warn.self.ref=\
   365     self-reference in initializer of variable ''{0}''
   367 compiler.err.illegal.generic.type.for.instof=\
   368     illegal generic type for instanceof
   370 # 0: type
   371 compiler.err.illegal.initializer.for.type=\
   372     illegal initializer for {0}
   374 compiler.err.illegal.line.end.in.char.lit=\
   375     illegal line end in character literal
   377 compiler.err.illegal.nonascii.digit=\
   378     illegal non-ASCII digit
   380 compiler.err.illegal.underscore=\
   381     illegal underscore
   383 # 0: symbol
   384 compiler.err.illegal.qual.not.icls=\
   385     illegal qualifier; {0} is not an inner class
   387 compiler.err.illegal.start.of.expr=\
   388     illegal start of expression
   390 compiler.err.illegal.start.of.type=\
   391     illegal start of type
   393 compiler.err.illegal.unicode.esc=\
   394     illegal unicode escape
   396 # 0: symbol
   397 compiler.err.import.requires.canonical=\
   398     import requires canonical name for {0}
   400 compiler.err.improperly.formed.type.param.missing=\
   401     improperly formed type, some parameters are missing
   403 compiler.err.improperly.formed.type.inner.raw.param=\
   404     improperly formed type, type arguments given on a raw type
   406 # 0: type, 1: type
   407 compiler.err.incomparable.types=\
   408     incomparable types: {0} and {1}
   410 # 0: number
   411 compiler.err.int.number.too.large=\
   412     integer number too large: {0}
   414 compiler.err.internal.error.cant.instantiate=\
   415     internal error; cannot instantiate {0} at {1} to ({2})
   417 compiler.err.intf.annotation.members.cant.have.params=\
   418     @interface members may not have parameters
   420 compiler.err.intf.annotation.cant.have.type.params=\
   421     @interface may not have type parameters
   423 compiler.err.intf.annotation.members.cant.have.type.params=\
   424     @interface members may not have type parameters
   426 # 0: symbol, 1: type
   427 compiler.err.intf.annotation.member.clash=\
   428     @interface member clashes with method ''{0}'' in {1}
   430 compiler.err.intf.expected.here=\
   431     interface expected here
   433 compiler.err.intf.meth.cant.have.body=\
   434     interface methods cannot have body
   436 compiler.err.invalid.annotation.member.type=\
   437     invalid type for annotation member
   439 compiler.err.invalid.binary.number=\
   440     binary numbers must contain at least one binary digit
   442 compiler.err.invalid.hex.number=\
   443     hexadecimal numbers must contain at least one hexadecimal digit
   445 compiler.err.invalid.meth.decl.ret.type.req=\
   446     invalid method declaration; return type required
   448 compiler.err.varargs.and.old.array.syntax=\
   449     legacy array notation not allowed on variable-arity parameter
   451 # 0: name
   452 compiler.err.label.already.in.use=\
   453     label {0} already in use
   455 # 0: symbol
   456 compiler.err.local.var.accessed.from.icls.needs.final=\
   457     local variable {0} is accessed from within inner class; needs to be declared final
   459 compiler.err.local.enum=\
   460     enum types must not be local
   462 compiler.err.cannot.create.array.with.type.arguments=\
   463     cannot create array with type arguments
   465 #
   466 # limits.  We don't give the limits in the diagnostic because we expect
   467 # them to change, yet we want to use the same diagnostic.  These are all
   468 # detected during code generation.
   469 #
   470 compiler.err.limit.code=\
   471     code too large
   473 compiler.err.limit.code.too.large.for.try.stmt=\
   474     code too large for try statement
   476 compiler.err.limit.dimensions=\
   477     array type has too many dimensions
   479 compiler.err.limit.locals=\
   480     too many local variables
   482 compiler.err.limit.parameters=\
   483     too many parameters
   485 compiler.err.limit.pool=\
   486     too many constants
   488 compiler.err.limit.pool.in.class=\
   489     too many constants in class {0}
   491 compiler.err.limit.stack=\
   492     code requires too much stack
   494 compiler.err.limit.string=\
   495     constant string too long
   497 compiler.err.limit.string.overflow=\
   498     UTF8 representation for string \"{0}...\" is too long for the constant pool
   500 compiler.err.malformed.fp.lit=\
   501     malformed floating point literal
   503 compiler.err.method.does.not.override.superclass=\
   504     method does not override or implement a method from a supertype
   506 compiler.err.missing.meth.body.or.decl.abstract=\
   507     missing method body, or declare abstract
   509 compiler.err.missing.ret.stmt=\
   510     missing return statement
   512 compiler.err.missing.ret.val=\
   513     missing return value
   515 # 0: set of modifier
   516 compiler.err.mod.not.allowed.here=\
   517     modifier {0} not allowed here
   519 compiler.err.intf.not.allowed.here=\
   520     interface not allowed here
   522 compiler.err.enums.must.be.static=\
   523     enum declarations allowed only in static contexts
   525 # 0: symbol, 1: symbol
   526 compiler.err.name.clash.same.erasure=\
   527     name clash: {0} and {1} have the same erasure
   529 # 0: symbol, 1: symbol, 2: symbol, 3: symbol, 4: unused, 5: unused
   530 compiler.err.name.clash.same.erasure.no.override=\
   531     name clash: {0} in {1} and {2} in {3} have the same erasure, yet neither overrides the other
   533 # 0: symbol, 1: symbol, 2: symbol, 3: symbol, 4: symbol, 5: symbol
   534 compiler.err.name.clash.same.erasure.no.override.1=\
   535     name clash: {0} in {1} overrides a method whose erasure is the same as another method, yet neither overrides the other\n\
   536     first method:  {2} in {3}\n\
   537     second method: {4} in {5}
   539 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
   540 compiler.err.name.clash.same.erasure.no.hide=\
   541     name clash: {0} in {1} and {2} in {3} have the same erasure, yet neither hides the other
   543 compiler.err.name.reserved.for.internal.use=\
   544     {0} is reserved for internal use
   546 compiler.err.native.meth.cant.have.body=\
   547     native methods cannot have a body
   549 # 0: type, 1: type
   550 compiler.err.neither.conditional.subtype=\
   551     incompatible types for ?: neither is a subtype of the other\n\
   552     second operand: {0}\n\
   553     third operand : {1}
   555 compiler.err.new.not.allowed.in.annotation=\
   556     ''new'' not allowed in an annotation
   558 compiler.err.no.annotation.member=\
   559     no annotation member {0} in {1}
   561 compiler.err.no.encl.instance.of.type.in.scope=\
   562     no enclosing instance of type {0} is in scope
   564 compiler.err.no.intf.expected.here=\
   565     no interface expected here
   567 compiler.err.no.match.entry=\
   568     {0} has no match in entry in {1}; required {2}
   570 compiler.err.not.annotation.type=\
   571     {0} is not an annotation type
   573 # 0: symbol, 1: symbol
   574 compiler.err.not.def.access.class.intf.cant.access=\
   575     {0} in {1} is defined in an inaccessible class or interface
   577 # 0: symbol, 1: symbol
   578 compiler.err.not.def.public.cant.access=\
   579     {0} is not public in {1}; cannot be accessed from outside package
   581 # 0: name
   582 compiler.err.not.loop.label=\
   583     not a loop label: {0}
   585 compiler.err.not.stmt=\
   586     not a statement
   588 # 0: symbol
   589 compiler.err.not.encl.class=\
   590     not an enclosing class: {0}
   592 # 0: name, 1: type, 2: unused
   593 compiler.err.operator.cant.be.applied=\
   594     bad operand type {1} for unary operator ''{0}''
   596 # 0: name, 1: type, 2: type
   597 compiler.err.operator.cant.be.applied.1=\
   598     bad operand types for binary operator ''{0}''\n\
   599     first type:  {1}\n\
   600     second type: {2}
   602 compiler.err.pkg.annotations.sb.in.package-info.java=\
   603     package annotations should be in file package-info.java
   605 # 0: symbol
   606 compiler.err.pkg.clashes.with.class.of.same.name=\
   607     package {0} clashes with class of same name
   609 compiler.err.warnings.and.werror=\
   610     warnings found and -Werror specified
   612 # Errors related to annotation processing
   614 # 0: symbol, 1: string, 2: stack-trace
   615 compiler.err.proc.cant.access=\
   616     cannot access {0}\n\
   617     {1}\n\
   618     Consult the following stack trace for details.\n\
   619     {2}
   621 # 0: symbol, 1: string
   622 compiler.err.proc.cant.access.1=\
   623     cannot access {0}\n\
   624     {1}
   626 # 0: string
   627 compiler.err.proc.cant.find.class=\
   628     Could not find class file for ''{0}''.
   630 # Print a client-generated error message; assumed to be localized, no translation required
   631 # 0: string
   632 compiler.err.proc.messager=\
   633     {0}
   635 # 0: list of string
   636 compiler.err.proc.no.explicit.annotation.processing.requested=\
   637     Class names, ''{0}'', are only accepted if annotation processing is explicitly requested
   639 compiler.err.proc.no.service=\
   640     A ServiceLoader was not usable and is required for annotation processing.
   642 compiler.err.proc.processor.bad.option.name=\
   643     Bad option name ''{0}'' provided by processor ''{1}''
   645 # 0: string
   646 compiler.err.proc.processor.cant.instantiate=\
   647     Could not instantiate an instance of processor ''{0}''
   649 # 0: string
   650 compiler.err.proc.processor.not.found=\
   651     Annotation processor ''{0}'' not found
   653 # 0: string
   654 compiler.err.proc.processor.wrong.type=\
   655     Annotation processor ''{0}'' does not implement javax.annotation.processing.Processor
   657 compiler.err.proc.service.problem=\
   658     Error creating a service loader to load Processors.
   660 compiler.err.proc.bad.config.file=\
   661     Bad service configuration file, or exception thrown while constructing Processor object: {0}
   663 compiler.err.proc.cant.create.loader=\
   664     Could not create class loader for annotation processors: {0}
   666 # 0: unused
   667 compiler.err.qualified.new.of.static.class=\
   668     qualified new of static class
   670 compiler.err.recursive.ctor.invocation=\
   671     recursive constructor invocation
   673 # 0: name, 1: symbol kind, 2: symbol, 3: symbol, 4: symbol kind, 5: symbol, 6: symbol
   674 compiler.err.ref.ambiguous=\
   675     reference to {0} is ambiguous, both {1} {2} in {3} and {4} {5} in {6} match
   677 compiler.err.repeated.annotation.target=\
   678     repeated annotation target
   680 compiler.err.repeated.interface=\
   681     repeated interface
   683 compiler.err.repeated.modifier=\
   684     repeated modifier
   686 # 0: symbol, 1: set of modifier, 2: symbol
   687 compiler.err.report.access=\
   688     {0} has {1} access in {2}
   690 compiler.err.ret.outside.meth=\
   691     return outside method
   693 compiler.err.signature.doesnt.match.supertype=\
   694     signature does not match {0}; incompatible supertype
   696 compiler.err.signature.doesnt.match.intf=\
   697     signature does not match {0}; incompatible interfaces
   699 # 0: symbol, 1: symbol, 2: symbol
   700 compiler.err.does.not.override.abstract=\
   701     {0} is not abstract and does not override abstract method {1} in {2}
   703 compiler.err.source.cant.overwrite.input.file=\
   704     error writing source; cannot overwrite input file {0}
   706 compiler.err.stack.sim.error=\
   707     Internal error: stack sim error on {0}
   709 compiler.err.static.imp.only.classes.and.interfaces=\
   710     static import only from classes and interfaces
   712 compiler.err.string.const.req=\
   713     constant string expression required
   715 # 0: symbol, 1: symbol
   716 compiler.err.synthetic.name.conflict=\
   717     the symbol {0} conflicts with a compiler-synthesized symbol in {1}
   719 # 0: symbol, 1: symbol
   720 compiler.warn.synthetic.name.conflict=\
   721     the symbol {0} conflicts with a compiler-synthesized symbol in {1}
   723 compiler.err.throws.not.allowed.in.intf.annotation=\
   724     throws clause not allowed in @interface members
   726 compiler.err.try.without.catch.or.finally=\
   727     ''try'' without ''catch'' or ''finally''
   729 compiler.err.try.without.catch.finally.or.resource.decls=\
   730     ''try'' without ''catch'', ''finally'' or resource declarations
   732 # 0: symbol
   733 compiler.err.type.doesnt.take.params=\
   734     type {0} does not take parameters
   736 compiler.err.type.var.cant.be.deref=\
   737     cannot select from a type variable
   739 compiler.err.type.var.may.not.be.followed.by.other.bounds=\
   740     a type variable may not be followed by other bounds
   742 compiler.err.type.var.more.than.once=\
   743     type variable {0} occurs more than once in result type of {1}; cannot be left uninstantiated
   745 compiler.err.type.var.more.than.once.in.result=\
   746     type variable {0} occurs more than once in type of {1}; cannot be left uninstantiated
   748 # 0: type, 1: type, 2: string
   749 compiler.err.types.incompatible.diff.ret=\
   750     types {0} and {1} are incompatible; both define {2}, but with unrelated return types
   752 compiler.err.unclosed.char.lit=\
   753     unclosed character literal
   755 compiler.err.unclosed.comment=\
   756     unclosed comment
   758 compiler.err.unclosed.str.lit=\
   759     unclosed string literal
   761 # 0: name
   762 compiler.err.unsupported.encoding=\
   763     unsupported encoding: {0}
   765 compiler.err.io.exception=\
   766     error reading source file: {0}
   768 # 0: name
   769 compiler.err.undef.label=\
   770     undefined label: {0}
   772 compiler.err.undetermined.type=\
   773     cannot infer type arguments for {0}
   775 # 0: type, 1: message segment
   776 compiler.err.undetermined.type.1=\
   777     cannot infer type arguments for {0};\n\
   778     reason: {1}
   780 # 0: list of type, 1: message segment
   781 compiler.err.invalid.inferred.types=\
   782     invalid inferred types for {0}; {1}
   784 # 0: message segment, 1: unused
   785 compiler.err.cant.apply.diamond=\
   786     cannot infer type arguments for {0}
   788 # 0: message segment, 1: message segment
   789 compiler.err.cant.apply.diamond.1=\
   790     cannot infer type arguments for {0};\n\
   791     reason: {1}
   793 compiler.err.unreachable.stmt=\
   794     unreachable statement
   796 compiler.err.initializer.must.be.able.to.complete.normally=\
   797     initializer must be able to complete normally
   799 # 0: type
   800 compiler.err.unreported.exception.need.to.catch.or.throw=\
   801     unreported exception {0}; must be caught or declared to be thrown
   803 # 0: type
   804 compiler.err.unreported.exception.default.constructor=\
   805     unreported exception {0} in default constructor
   807 # 0: type, 1: name
   808 compiler.err.unreported.exception.implicit.close=\
   809     unreported exception {0}; must be caught or declared to be thrown\n\
   810     exception thrown from implicit call to close() on resource variable ''{1}''
   812 compiler.err.unsupported.cross.fp.lit=\
   813     hexadecimal floating-point literals are not supported on this VM
   815 compiler.err.void.not.allowed.here=\
   816     ''void'' type not allowed here
   818 # 0: string
   819 compiler.err.wrong.number.type.args=\
   820     wrong number of type arguments; required {0}
   822 # 0: symbol
   823 compiler.err.var.might.already.be.assigned=\
   824     variable {0} might already have been assigned
   826 # 0: symbol
   827 compiler.err.var.might.not.have.been.initialized=\
   828     variable {0} might not have been initialized
   830 # 0: symbol
   831 compiler.err.var.might.be.assigned.in.loop=\
   832     variable {0} might be assigned in loop
   834 # 0: symbol, 1: message segment
   835 compiler.err.varargs.invalid.trustme.anno=\
   836     Invalid {0} annotation. {1}
   838 # 0: type
   839 compiler.misc.varargs.trustme.on.reifiable.varargs=\
   840     Varargs element type {0} is reifiable.
   842 # 0: symbol
   843 compiler.misc.varargs.trustme.on.non.varargs.meth=\
   844     Method {0} is not a varargs method.
   846 # 0: symbol
   847 compiler.misc.varargs.trustme.on.virtual.varargs=\
   848     Instance method {0} is not final.
   850 # 0: type, 1: kind, 2: symbol
   851 compiler.misc.inaccessible.varargs.type=\
   852     formal varargs element type {0} is not accessible from {1} {2}
   854 # In the following string, {1} will always be the detail message from
   855 # java.io.IOException.
   856 # 0: symbol, 1: string
   857 compiler.err.class.cant.write=\
   858     error while writing {0}: {1}
   860 # In the following string, {0} is the name of the class in the Java source.
   861 # It really should be used two times..
   862 # 0: name
   863 compiler.err.class.public.should.be.in.file=\
   864     class {0} is public, should be declared in a file named {0}.java
   866 ## All errors which do not refer to a particular line in the source code are
   867 ## preceded by this string.
   868 compiler.err.error=\
   869     error:\u0020
   871 # The following error messages do not refer to a line in the source code.
   872 compiler.err.cant.read.file=\
   873     cannot read: {0}
   875 #####
   877 # Fatal Errors
   879 compiler.misc.fatal.err.no.java.lang=\
   880     Fatal Error: Unable to find package java.lang in classpath or bootclasspath
   882 compiler.misc.fatal.err.cant.locate.meth=\
   883     Fatal Error: Unable to find method {0}
   885 compiler.misc.fatal.err.cant.locate.field=\
   886     Fatal Error: Unable to find field {0}
   888 compiler.misc.fatal.err.cant.locate.ctor=\
   889     Fatal Error: Unable to find constructor for {0}
   891 compiler.misc.fatal.err.cant.close.loader=\
   892     Fatal Error: Cannot close class loader for annotation processors
   894 #####
   896 ##
   897 ## miscellaneous strings
   898 ##
   900 compiler.misc.source.unavailable=\
   901     (source unavailable)
   903 compiler.misc.base.membership=\
   904     all your base class are belong to us
   906 # 0: string, 1: string, 2: boolean
   907 compiler.misc.x.print.processor.info=\
   908     Processor {0} matches {1} and returns {2}.
   910 # 0: number, 1: string, 2: set of symbol, 3: boolean
   911 compiler.misc.x.print.rounds=\
   912     Round {0}:\n\tinput files: {1}\n\tannotations: {2}\n\tlast round: {3}
   914 #####
   916 ## The following string will appear before all messages keyed as:
   917 ## "compiler.note".
   918 compiler.note.note=\
   919     Note:\u0020
   921 # 0: file name
   922 compiler.note.deprecated.filename=\
   923     {0} uses or overrides a deprecated API.
   925 compiler.note.deprecated.plural=\
   926     Some input files use or override a deprecated API.
   928 # The following string may appear after one of the above deprecation
   929 # messages.
   930 compiler.note.deprecated.recompile=\
   931     Recompile with -Xlint:deprecation for details.
   933 # 0: file name
   934 compiler.note.deprecated.filename.additional=\
   935     {0} has additional uses or overrides of a deprecated API.
   937 compiler.note.deprecated.plural.additional=\
   938     Some input files additionally use or override a deprecated API.
   940 # 0: file name
   941 compiler.note.unchecked.filename=\
   942     {0} uses unchecked or unsafe operations.
   944 compiler.note.unchecked.plural=\
   945     Some input files use unchecked or unsafe operations.
   947 # The following string may appear after one of the above deprecation
   948 # messages.
   949 compiler.note.unchecked.recompile=\
   950     Recompile with -Xlint:unchecked for details.
   952 # 0: file name
   953 compiler.note.unchecked.filename.additional=\
   954     {0} has additional unchecked or unsafe operations.
   956 compiler.note.unchecked.plural.additional=\
   957     Some input files additionally use unchecked or unsafe operations.
   959 # 0: file name
   960 compiler.note.sunapi.filename=\
   961     {0} uses internal proprietary API that may be removed in a future release.
   963 compiler.note.sunapi.plural=\
   964     Some input files use internal proprietary API that may be removed in a future release.
   966 # The following string may appear after one of the above sunapi messages.
   967 compiler.note.sunapi.recompile=\
   968     Recompile with -Xlint:sunapi for details.
   970 # 0: file name
   971 compiler.note.sunapi.filename.additional=\
   972     {0} uses additional internal proprietary API that may be removed in a future release.
   974 compiler.note.sunapi.plural.additional=\
   975     Some input files additionally use internal proprietary API that may be removed in a future release.
   977 # Notes related to annotation processing
   979 # Print a client-generated note; assumed to be localized, no translation required
   980 # 0: string
   981 compiler.note.proc.messager=\
   982     {0}
   984 #####
   986 # 0: number
   987 compiler.misc.count.error=\
   988     {0} error
   990 # 0: number
   991 compiler.misc.count.error.plural=\
   992     {0} errors
   994 # 0: number
   995 compiler.misc.count.warn=\
   996     {0} warning
   998 # 0: number
   999 compiler.misc.count.warn.plural=\
  1000     {0} warnings
  1002 compiler.misc.version.not.available=\
  1003     (version info not available)
  1005 ## extra output when using -verbose (JavaCompiler)
  1007 # 0: symbol
  1008 compiler.misc.verbose.checking.attribution=\
  1009     [checking {0}]
  1011 # 0: string
  1012 compiler.misc.verbose.parsing.done=\
  1013     [parsing completed {0}ms]
  1015 # 0: file name
  1016 compiler.misc.verbose.parsing.started=\
  1017     [parsing started {0}]
  1019 # 0: string
  1020 compiler.misc.verbose.total=\
  1021     [total {0}ms]
  1023 # 0: file name
  1024 compiler.misc.verbose.wrote.file=\
  1025     [wrote {0}]
  1027 ## extra output when using -verbose (Retro)
  1028 compiler.misc.verbose.retro=\
  1029     [retrofitting {0}]
  1031 compiler.misc.verbose.retro.with=\
  1032     \tretrofitting {0} with {1}
  1034 compiler.misc.verbose.retro.with.list=\
  1035     \tretrofitting {0} with type parameters {1}, supertype {2}, interfaces {3}
  1037 ## extra output when using -verbose (code/ClassReader)
  1038 # 0: string
  1039 compiler.misc.verbose.loading=\
  1040     [loading {0}]
  1042 # 0: string
  1043 compiler.misc.verbose.sourcepath=\
  1044     [search path for source files: {0}]
  1046 # 0: string
  1047 compiler.misc.verbose.classpath=\
  1048     [search path for class files: {0}]
  1050 ## extra output when using -checkclassfile (code/ClassReader)
  1051 compiler.misc.ccf.found.later.version=\
  1052     class file has later version than expected: {0}
  1054 compiler.misc.ccf.unrecognized.attribute=\
  1055     unrecognized attribute: {0}
  1057 ## extra output when using -prompt (util/Log)
  1058 compiler.misc.resume.abort=\
  1059     R)esume, A)bort>
  1061 #####
  1063 ##
  1064 ## warnings
  1065 ##
  1067 ## All warning messages are preceded by the following string.
  1068 compiler.warn.warning=\
  1069     warning:\u0020
  1071 ## Warning messages may also include the following prefix to identify a
  1072 ## lint option
  1073 # 0: option name
  1074 compiler.warn.lintOption=\
  1075     [{0}]\u0020
  1077 # 0: symbol
  1078 compiler.warn.constant.SVUID=\
  1079     serialVersionUID must be constant in class {0}
  1081 # 0: file name
  1082 compiler.warn.dir.path.element.not.found=\
  1083     bad path element "{0}": no such directory
  1085 compiler.warn.finally.cannot.complete=\
  1086     finally clause cannot complete normally
  1088 # 0: symbol, 1: symbol
  1089 compiler.warn.has.been.deprecated=\
  1090     {0} in {1} has been deprecated
  1092 # 0: symbol
  1093 compiler.warn.sun.proprietary=\
  1094     {0} is internal proprietary API and may be removed in a future release
  1096 compiler.warn.illegal.char.for.encoding=\
  1097     unmappable character for encoding {0}
  1099 # 0: symbol
  1100 compiler.warn.improper.SVUID=\
  1101     serialVersionUID must be declared static final in class {0}
  1103 # 0: type, 1: type
  1104 compiler.warn.inexact.non-varargs.call=\
  1105     non-varargs call of varargs method with inexact argument type for last parameter;\n\
  1106     cast to {0} for a varargs call\n\
  1107     cast to {1} for a non-varargs call and to suppress this warning
  1109 # 0: list of type
  1110 compiler.warn.unreachable.catch=\
  1111     unreachable catch clause\n\
  1112     thrown type {0} has already been caught
  1114 # 0: list of type
  1115 compiler.warn.unreachable.catch.1=\
  1116     unreachable catch clause\n\
  1117     thrown types {0} have already been caught
  1119 # 0: symbol
  1120 compiler.warn.long.SVUID=\
  1121     serialVersionUID must be of type long in class {0}
  1123 # 0: symbol
  1124 compiler.warn.missing.SVUID=\
  1125     serializable class {0} has no definition of serialVersionUID
  1127 # 0: message segment
  1128 compiler.warn.override.varargs.missing=\
  1129     {0}; overridden method has no ''...''
  1131 # 0: message segment
  1132 compiler.warn.override.varargs.extra=\
  1133     {0}; overriding method is missing ''...''
  1135 compiler.warn.override.bridge=\
  1136     {0}; overridden method is a bridge method
  1138 # 0: symbol
  1139 compiler.warn.pkg-info.already.seen=\
  1140     a package-info.java file has already been seen for package {0}
  1142 # 0: file name
  1143 compiler.warn.path.element.not.found=\
  1144     bad path element "{0}": no such file or directory
  1146 compiler.warn.possible.fall-through.into.case=\
  1147     possible fall-through into case
  1149 # 0: type
  1150 compiler.warn.redundant.cast=\
  1151     redundant cast to {0}
  1153 # 0: number
  1154 compiler.warn.position.overflow=\
  1155     Position encoding overflows at line {0}
  1157 # 0: file name, 1: number, 2: number
  1158 compiler.warn.big.major.version=\
  1159     {0}: major version {1} is newer than {2}, the highest major version supported by this compiler.\n\
  1160     It is recommended that the compiler be upgraded.
  1162 # 0: symbol kind, 1: symbol
  1163 compiler.warn.static.not.qualified.by.type=\
  1164     static {0} should be qualified by type name, {1}, instead of by an expression
  1166 # 0: string
  1167 compiler.warn.source.no.bootclasspath=\
  1168     bootstrap class path not set in conjunction with -source {0}
  1170 # 0: name, 1: number, 2: number, 3: number, 4: number
  1171 compiler.warn.future.attr=\
  1172     {0} attribute introduced in version {1}.{2} class files is ignored in version {3}.{4} class files
  1174 # Warnings related to annotation processing
  1175 # 0: name
  1176 compiler.warn.proc.package.does.not.exist=\
  1177     package {0} does not exist
  1179 # 0: name
  1180 compiler.warn.proc.file.reopening=\
  1181     Attempt to create a file for ''{0}'' multiple times
  1183 # 0: name
  1184 compiler.warn.proc.type.already.exists=\
  1185     A file for type ''{0}'' already exists on the sourcepath or classpath
  1187 # 0: name
  1188 compiler.warn.proc.type.recreate=\
  1189     Attempt to create a file for type ''{0}'' multiple times
  1191 # 0: string
  1192 compiler.warn.proc.illegal.file.name=\
  1193     Cannot create file for illegal name ''{0}''.
  1195 # 0: string, 1: string
  1196 compiler.warn.proc.suspicious.class.name=\
  1197     Creating file for a type whose name ends in {1}: ''{0}''
  1199 # 0: name
  1200 compiler.warn.proc.file.create.last.round=\
  1201     File for type ''{0}'' created in the last round will not be subject to annotation processing.
  1203 # 0: string, 1: string
  1204 compiler.warn.proc.malformed.supported.string=\
  1205     Malformed string ''{0}'' for a supported annotation type returned by processor ''{1}''
  1207 # 0: set of string
  1208 compiler.warn.proc.annotations.without.processors=\
  1209     No processor claimed any of these annotations: {0}
  1211 # 0: source version, 1: string, 2: string
  1212 compiler.warn.proc.processor.incompatible.source.version=\
  1213     Supported source version ''{0}'' from annotation processor ''{1}'' less than -source ''{2}''
  1215 compiler.warn.proc.proc-only.requested.no.procs=\
  1216     Annotation processing without compilation requested but no processors were found.
  1218 compiler.warn.proc.use.implicit=\
  1219     Implicitly compiled files were not subject to annotation processing.\n\
  1220     Use -implicit to specify a policy for implicit compilation.
  1222 compiler.warn.proc.use.proc.or.implicit=\
  1223     Implicitly compiled files were not subject to annotation processing.\n\
  1224     Use -proc:none to disable annotation processing or -implicit to specify a policy for implicit compilation.
  1226 # Print a client-generated warning; assumed to be localized, no translation required
  1227 # 0: string
  1228 compiler.warn.proc.messager=\
  1229     {0}
  1231 # 0: set of name
  1232 compiler.warn.proc.unclosed.type.files=\
  1233     Unclosed files for the types ''{0}''; these types will not undergo annotation processing
  1235 # 0: string
  1236 compiler.warn.proc.unmatched.processor.options=\
  1237     The following options were not recognized by any processor: ''{0}''
  1239 compiler.warn.try.explicit.close.call=\
  1240     explicit call to close() on an auto-closeable resource
  1242 # 0: symbol
  1243 compiler.warn.try.resource.not.referenced=\
  1244     auto-closeable resource {0} is never referenced in body of corresponding try statement
  1246 # 0: type
  1247 compiler.warn.try.resource.throws.interrupted.exc=\
  1248     auto-closeable resource {0} has a member method close() that could throw InterruptedException
  1250 compiler.warn.unchecked.assign=\
  1251     unchecked assignment: {0} to {1}
  1253 # 0: symbol, 1: type
  1254 compiler.warn.unchecked.assign.to.var=\
  1255     unchecked assignment to variable {0} as member of raw type {1}
  1257 # 0: symbol, 1: type
  1258 compiler.warn.unchecked.call.mbr.of.raw.type=\
  1259     unchecked call to {0} as a member of the raw type {1}
  1261 compiler.warn.unchecked.cast.to.type=\
  1262     unchecked cast to type {0}
  1264 # 0: symbol kind, 1: name, 2: list of type, 3: list of type, 4: symbol kind, 5: symbol
  1265 compiler.warn.unchecked.meth.invocation.applied=\
  1266     unchecked method invocation: {0} {1} in {4} {5} is applied to given types\n\
  1267     required: {2}\n\
  1268     found: {3}
  1270 # 0: type
  1271 compiler.warn.unchecked.generic.array.creation=\
  1272     unchecked generic array creation for varargs parameter of type {0}
  1274 # 0: type
  1275 compiler.warn.unchecked.varargs.non.reifiable.type=\
  1276     Possible heap pollution from parameterized vararg type {0}
  1278 # 0: symbol
  1279 compiler.warn.varargs.unsafe.use.varargs.param=\
  1280     Varargs method could cause heap pollution from non-reifiable varargs parameter {0}
  1282 compiler.warn.missing.deprecated.annotation=\
  1283     deprecated item is not annotated with @Deprecated
  1285 compiler.warn.invalid.archive.file=\
  1286     Unexpected file on path: {0}
  1288 compiler.warn.unexpected.archive.file=\
  1289     Unexpected extension for archive file: {0}
  1291 compiler.warn.div.zero=\
  1292     division by zero
  1294 compiler.warn.empty.if=\
  1295     empty statement after if
  1297 compiler.warn.annotation.method.not.found=\
  1298     Cannot find annotation method ''{1}()'' in type ''{0}''
  1300 compiler.warn.annotation.method.not.found.reason=\
  1301     Cannot find annotation method ''{1}()'' in type ''{0}'': {2}
  1303 # 0: symbol, 1: name
  1304 compiler.warn.unknown.enum.constant=\
  1305     unknown enum constant {1}.{2}
  1307 # 0: symbol, 1: name, 2: message segment
  1308 compiler.warn.unknown.enum.constant.reason=\
  1309     unknown enum constant {1}.{2}\n\
  1310     reason: {3}
  1312 # 0: type, 1: type
  1313 compiler.warn.raw.class.use=\
  1314     found raw type: {0}\n\
  1315     missing type arguments for generic class {1}
  1317 # 0: unused, 1: unused
  1318 compiler.warn.diamond.redundant.args=\
  1319     redundant type arguments in new expression (use diamond operator instead).
  1321 # 0: type, 1: type
  1322 compiler.warn.diamond.redundant.args.1=\
  1323     redundant type arguments in new expression (use diamond operator instead).\n\
  1324     explicit: {0}\n\
  1325     inferred: {1}
  1327 # 0: symbol, 1: message segment
  1328 compiler.warn.varargs.redundant.trustme.anno=\
  1329     Redundant {0} annotation. {1}
  1331 #####
  1333 ## The following are tokens which are non-terminals in the language. They should
  1334 ## be named as JLS3 calls them when translated to the appropriate language.
  1335 compiler.misc.token.identifier=\
  1336     <identifier>
  1338 compiler.misc.token.character=\
  1339     <character>
  1341 compiler.misc.token.string=\
  1342     <string>
  1344 compiler.misc.token.integer=\
  1345     <integer>
  1347 compiler.misc.token.long-integer=\
  1348     <long integer>
  1350 compiler.misc.token.float=\
  1351     <float>
  1353 compiler.misc.token.double=\
  1354     <double>
  1356 compiler.misc.token.bad-symbol=\
  1357     <bad symbol>
  1359 compiler.misc.token.end-of-input=\
  1360     <end of input>
  1362 ## The argument to the following string will always be one of the following:
  1363 ## 1. one of the above non-terminals
  1364 ## 2. a keyword (JLS1.8)
  1365 ## 3. a boolean literal (JLS3.10.3)
  1366 ## 4. the null literal (JLS3.10.7)
  1367 ## 5. a Java separator (JLS3.11)
  1368 ## 6. an operator (JLS3.12)
  1369 ##
  1370 ## This is the only place these tokens will be used.
  1371 # 0: token
  1372 compiler.err.expected=\
  1373     {0} expected
  1375 # 0: token, 1: token
  1376 compiler.err.expected2=\
  1377     {0} or {1} expected
  1379 # 0: token, 1: token, 2: token
  1380 compiler.err.expected3=\
  1381     {0}, {1}, or {2} expected
  1383 compiler.err.premature.eof=\
  1384     reached end of file while parsing
  1386 ## The following are related in form, but do not easily fit the above paradigm.
  1387 compiler.err.dot.class.expected=\
  1388     ''.class'' expected
  1390 ## The argument to this string will always be either 'case' or 'default'.
  1391 # 0: token
  1392 compiler.err.orphaned=\
  1393     orphaned {0}
  1395 # 0: name
  1396 compiler.misc.anonymous.class=\
  1397     <anonymous {0}>
  1399 # 0: name, 1: type
  1400 compiler.misc.type.captureof=\
  1401     capture#{0} of {1}
  1403 compiler.misc.type.captureof.1=\
  1404     capture#{0}
  1406 compiler.misc.type.none=\
  1407     <none>
  1409 compiler.misc.unnamed.package=\
  1410     unnamed package
  1412 #####
  1414 # 0: symbol, 1: message segment
  1415 compiler.err.cant.access=\
  1416     cannot access {0}\n\
  1417     {1}
  1419 compiler.misc.bad.class.file.header=\
  1420     bad class file: {0}\n\
  1421     {1}\n\
  1422     Please remove or make sure it appears in the correct subdirectory of the classpath.
  1424 # 0: file name, 1: message segment
  1425 compiler.misc.bad.source.file.header=\
  1426     bad source file: {0}\n\
  1427     {1}\n\
  1428     Please remove or make sure it appears in the correct subdirectory of the sourcepath.
  1430 ## The following are all possible strings for the second argument ({1}) of the
  1431 ## above strings.
  1432 compiler.misc.bad.class.signature=\
  1433     bad class signature: {0}
  1435 #0: symbol, 1: symbol
  1436 compiler.misc.bad.enclosing.class=\
  1437     bad enclosing class for {0}: {1}
  1439 # 0: symbol
  1440 compiler.misc.bad.enclosing.method=\
  1441     bad enclosing method attribute for class {0}
  1443 compiler.misc.bad.runtime.invisible.param.annotations=\
  1444     bad RuntimeInvisibleParameterAnnotations attribute: {0}
  1446 compiler.misc.bad.const.pool.tag=\
  1447     bad constant pool tag: {0}
  1449 compiler.misc.bad.const.pool.tag.at=\
  1450     bad constant pool tag: {0} at {1}
  1452 compiler.misc.bad.signature=\
  1453     bad signature: {0}
  1455 compiler.misc.class.file.wrong.class=\
  1456     class file contains wrong class: {0}
  1458 compiler.misc.class.file.not.found=\
  1459     class file for {0} not found
  1461 # 0: name
  1462 compiler.misc.file.doesnt.contain.class=\
  1463     file does not contain class {0}
  1465 compiler.misc.file.does.not.contain.package=\
  1466     file does not contain package {0}
  1468 compiler.misc.illegal.start.of.class.file=\
  1469     illegal start of class file
  1471 compiler.misc.unable.to.access.file=\
  1472     unable to access file: {0}
  1474 compiler.misc.unicode.str.not.supported=\
  1475     unicode string in class file not supported
  1477 compiler.misc.undecl.type.var=\
  1478     undeclared type variable: {0}
  1480 compiler.misc.wrong.version=\
  1481     class file has wrong version {0}.{1}, should be {2}.{3}
  1483 #####
  1485 # 0: type, 1: type or symbol
  1486 compiler.err.not.within.bounds=\
  1487     type argument {0} is not within bounds of type-variable {1}
  1489 ## The following are all possible strings for the second argument ({1}) of the
  1490 ## above string.
  1492 ## none yet...
  1494 #####
  1496 # 0: message segment, 1: type, 2: type
  1497 compiler.err.prob.found.req=\
  1498     {0}\n\
  1499     required: {2}\n\
  1500     found:    {1}
  1502 # 0: message segment, 1: type, 2: type
  1503 compiler.warn.prob.found.req=\
  1504     {0}\n\
  1505     required: {2}\n\
  1506     found:    {1}
  1508 compiler.err.prob.found.req.1=\
  1509     {0} {3}\n\
  1510     required: {2}\n\
  1511     found:    {1}
  1513 ## The following are all possible strings for the first argument ({0}) of the
  1514 ## above strings.
  1515 compiler.misc.incompatible.types=\
  1516     incompatible types
  1518 # 0: message segment
  1519 compiler.misc.incompatible.types.1=\
  1520     incompatible types; {0}
  1522 compiler.misc.inconvertible.types=\
  1523     inconvertible types
  1525 compiler.misc.possible.loss.of.precision=\
  1526     possible loss of precision
  1528 compiler.misc.unchecked.assign=\
  1529     unchecked conversion
  1531 # compiler.misc.storecheck=\
  1532 #     assignment might cause later store checks to fail
  1533 # compiler.misc.unchecked=\
  1534 #     assigned array cannot dynamically check its stores
  1535 compiler.misc.unchecked.cast.to.type=\
  1536     unchecked cast
  1538 compiler.misc.assignment.from.super-bound=\
  1539     assignment from super-bound type {0}
  1541 compiler.misc.assignment.to.extends-bound=\
  1542     assignment to extends-bound type {0}
  1544 # compiler.err.star.expected=\
  1545 #     ''*'' expected
  1546 # compiler.err.no.elem.type=\
  1547 #     \[\*\] cannot have a type
  1549 compiler.misc.try.not.applicable.to.type=\
  1550     try-with-resources not applicable to variable type
  1552 #####
  1554 # 0: message segment or type, 1: message segment
  1555 compiler.err.type.found.req=\
  1556     unexpected type\n\
  1557     required: {1}\n\
  1558     found:    {0}
  1560 ## The following are all possible strings for the first argument ({0}) of the
  1561 ## above string.
  1562 compiler.misc.type.req.class=\
  1563     class
  1565 compiler.misc.type.req.class.array=\
  1566     class or array
  1568 compiler.misc.type.req.array.or.iterable=\
  1569     array or java.lang.Iterable
  1571 compiler.misc.type.req.ref=\
  1572     reference
  1574 compiler.misc.type.req.exact=\
  1575     class or interface without bounds
  1577 # 0: type
  1578 compiler.misc.type.parameter=\
  1579     type parameter {0}
  1581 #####
  1583 ## The following are all possible strings for the last argument of all those
  1584 ## diagnostics whose key ends in ".1"
  1585 compiler.misc.undetermined.type=\
  1586     undetermined type
  1588 compiler.misc.type.variable.has.undetermined.type=\
  1589     type variable {0} has undetermined type
  1591 # 0: type, 1: list of type
  1592 compiler.misc.no.unique.maximal.instance.exists=\
  1593     no unique maximal instance exists for type variable {0} with upper bounds {1}
  1595 compiler.misc.no.unique.minimal.instance.exists=\
  1596     no unique minimal instance exists for type variable {0} with lower bounds {1}
  1598 # 0: list of type, 1: type, 2: type
  1599 compiler.misc.infer.no.conforming.instance.exists=\
  1600     no instance(s) of type variable(s) {0} exist so that {1} conforms to {2}
  1602 # 0: list of type, 1: type, 2: type
  1603 compiler.misc.infer.no.conforming.assignment.exists=\
  1604     no instance(s) of type variable(s) {0} exist so that argument type {1} conforms to formal parameter type {2}
  1606 compiler.misc.infer.arg.length.mismatch=\
  1607     cannot instantiate from arguments because actual and formal argument lists differ in length
  1609 # 0: type, 1: list of type
  1610 compiler.misc.inferred.do.not.conform.to.bounds=\
  1611     inferred type does not conform to declared bound(s)\n\
  1612     inferred: {0}\n\
  1613     bound(s): {1}
  1615 # 0: symbol
  1616 compiler.misc.diamond=\
  1617     {0}<>
  1619 # 0: type
  1620 compiler.misc.diamond.non.generic=\
  1621     cannot use ''<>'' with non-generic class {0}
  1623 compiler.misc.diamond.and.explicit.params=\
  1624     cannot use ''<>'' with explicit type parameters for constructor
  1626 # 0: type, 1: list of type
  1627 compiler.misc.explicit.param.do.not.conform.to.bounds=\
  1628     explicit type argument {0} does not conform to declared bound(s) {1}
  1630 compiler.misc.arg.length.mismatch=\
  1631     actual and formal argument lists differ in length
  1633 # 0: type, 1: type
  1634 compiler.misc.no.conforming.assignment.exists=\
  1635     actual argument {0} cannot be converted to {1} by method invocation conversion
  1637 # 0: type, 1: type
  1638 compiler.misc.varargs.argument.mismatch=\
  1639     argument type {0} does not conform to vararg element type {1}
  1641 #####
  1643 ## The first argument ({0}) is a "kindname".
  1644 # 0: symbol kind, 1: symbol, 2: symbol
  1645 compiler.err.abstract.cant.be.accessed.directly=\
  1646     abstract {0} {1} in {2} cannot be accessed directly
  1648 ## The first argument ({0}) is a "kindname".
  1649 # 0: symbol kind, 1: symbol
  1650 compiler.err.non-static.cant.be.ref=\
  1651     non-static {0} {1} cannot be referenced from a static context
  1653 ## Both arguments ({0}, {1}) are "kindname"s.  {0} is a comma-separated list
  1654 ## of kindnames (the list should be identical to that provided in source.
  1655 compiler.err.unexpected.type=\
  1656     unexpected type\n\
  1657     required: {0}\n\
  1658     found:    {1}
  1660 ## The first argument {0} is a "kindname" (e.g. 'constructor', 'field', etc.)
  1661 ## The second argument {1} is the non-resolved symbol
  1662 ## The third argument {2} is a list of type parameters (non-empty if {1} is a method)
  1663 ## The fourth argument {3} is a list of argument types (non-empty if {1} is a method)
  1664 # 0: symbol kind, 1: name, 2: unused, 3: unused
  1665 compiler.err.cant.resolve=\
  1666     cannot find symbol\n\
  1667     symbol: {0} {1}
  1669 # 0: symbol kind, 1: name, 2: unused, 3: list of type
  1670 compiler.err.cant.resolve.args=\
  1671     cannot find symbol\n\
  1672     symbol: {0} {1}({3})
  1674 # 0: symbol kind, 1: name, 2: list of type, 3: list of type
  1675 compiler.err.cant.resolve.args.params=\
  1676     cannot find symbol\n\
  1677     symbol: {0} <{2}>{1}({3})
  1679 ## arguments from {0} to {3} have the same meaning as above
  1680 ## The fifth argument {4} is a location subdiagnostic (see below)
  1681 # 0: symbol kind, 1: name, 2: unused, 3: unused, 4: message segment
  1682 compiler.err.cant.resolve.location=\
  1683     cannot find symbol\n\
  1684     symbol:   {0} {1}\n\
  1685     location: {4}
  1687 # 0: symbol kind, 1: name, 2: unused, 3: list of type, 4: message segment
  1688 compiler.err.cant.resolve.location.args=\
  1689     cannot find symbol\n\
  1690     symbol:   {0} {1}({3})\n\
  1691     location: {4}
  1693 # 0: symbol kind, 1: name, 2: list of type, 3: list, 4: message segment
  1694 compiler.err.cant.resolve.location.args.params=\
  1695     cannot find symbol\n\
  1696     symbol:   {0} <{2}>{1}({3})\n\
  1697     location: {4}
  1699 ##a location subdiagnostic is composed as follows:
  1700 ## The first argument {0} is the location "kindname" (e.g. 'constructor', 'field', etc.)
  1701 ## The second argument {1} is the location name
  1702 ## The third argument {2} is the location type (only when {1} is a variable name)
  1704 # 0: symbol kind, 1: symbol, 2: unused
  1705 compiler.misc.location=\
  1706     {0} {1}
  1708 # 0: symbol kind, 1: symbol, 2: type
  1709 compiler.misc.location.1=\
  1710     {0} {1} of type {2}
  1712 ## The following are all possible string for "kindname".
  1713 ## They should be called whatever the JLS calls them after it been translated
  1714 ## to the appropriate language.
  1715 # compiler.misc.kindname.constructor=\
  1716 #     static member
  1717 compiler.misc.kindname.annotation=\
  1718     @interface
  1720 compiler.misc.kindname.constructor=\
  1721     constructor
  1723 compiler.misc.kindname.enum=\
  1724     enum
  1726 compiler.misc.kindname.interface=\
  1727     interface
  1729 compiler.misc.kindname.static=\
  1730     static
  1732 compiler.misc.kindname.type.variable=\
  1733     type variable
  1735 compiler.misc.kindname.type.variable.bound=\
  1736     bound of type variable
  1738 compiler.misc.kindname.variable=\
  1739     variable
  1741 compiler.misc.kindname.value=\
  1742     value
  1744 compiler.misc.kindname.method=\
  1745     method
  1747 compiler.misc.kindname.class=\
  1748     class
  1750 compiler.misc.kindname.package=\
  1751     package
  1753 #####
  1755 compiler.misc.no.args=\
  1756     no arguments
  1758 # 0: message segment
  1759 compiler.err.override.static=\
  1760     {0}\n\
  1761     overriding method is static
  1763 # 0: message segment, 1: set of modifier
  1764 compiler.err.override.meth=\
  1765     {0}\n\
  1766     overridden method is {1}
  1768 # 0: message segment, 1: type
  1769 compiler.err.override.meth.doesnt.throw=\
  1770     {0}\n\
  1771     overridden method does not throw {1}
  1773 # In the following string {1} is a space separated list of Java Keywords, as
  1774 # they would have been declared in the source code
  1775 # 0: message segment, 1: set of modifier
  1776 compiler.err.override.weaker.access=\
  1777     {0}\n\
  1778     attempting to assign weaker access privileges; was {1}
  1780 # 0: message segment, 1: type, 2: type
  1781 compiler.err.override.incompatible.ret=\
  1782     {0}\n\
  1783     return type {1} is not compatible with {2}
  1785 # 0: message segment, 1: type, 2: type
  1786 compiler.warn.override.unchecked.ret=\
  1787     {0}\n\
  1788     return type requires unchecked conversion from {1} to {2}
  1790 # 0: message segment, 1: type
  1791 compiler.warn.override.unchecked.thrown=\
  1792     {0}\n\
  1793     overridden method does not throw {1}
  1795 ## The following are all possible strings for the first argument ({0}) of the
  1796 ## above strings.
  1797 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1798 compiler.misc.cant.override=\
  1799     {0} in {1} cannot override {2} in {3}
  1801 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1802 compiler.misc.cant.implement=\
  1803     {0} in {1} cannot implement {2} in {3}
  1805 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1806 compiler.misc.clashes.with=\
  1807     {0} in {1} clashes with {2} in {3}
  1809 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1810 compiler.misc.unchecked.override=\
  1811     {0} in {1} overrides {2} in {3}
  1813 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1814 compiler.misc.unchecked.implement=\
  1815     {0} in {1} implements {2} in {3}
  1817 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1818 compiler.misc.unchecked.clash.with=\
  1819     {0} in {1} overrides {2} in {3}
  1821 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1822 compiler.misc.varargs.override=\
  1823     {0} in {1} overrides {2} in {3}
  1825 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1826 compiler.misc.varargs.implement=\
  1827     {0} in {1} implements {2} in {3}
  1829 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1830 compiler.misc.varargs.clash.with=\
  1831     {0} in {1} overrides {2} in {3}
  1833 compiler.misc.diamond.and.anon.class=\
  1834     cannot use ''<>'' with anonymous inner classes
  1836 # 0: symbol kind, 1: symbol, 2: symbol, 3: message segment
  1837 compiler.misc.inapplicable.method=\
  1838     {0} {1}.{2} is not applicable\n\
  1839     ({3})
  1841 ########################################
  1842 # Diagnostics for language feature changes
  1843 ########################################
  1844 # 0: string
  1845 compiler.err.unsupported.fp.lit=\
  1846     hexadecimal floating point literals are not supported in -source {0}\n\
  1847     (use -source 5 or higher to enable hexadecimal floating point literals)
  1849 # 0: string
  1850 compiler.err.unsupported.binary.lit=\
  1851     binary literals are not supported in -source {0}\n\
  1852     (use -source 7 or higher to enable binary literals)
  1854 # 0: string
  1855 compiler.err.unsupported.underscore.lit=\
  1856     underscores in literals are not supported in -source {0}\n\
  1857     (use -source 7 or higher to enable underscores in literals)
  1859 # 0: string
  1860 compiler.err.try.with.resources.not.supported.in.source=\
  1861     try-with-resources is not supported in -source {0}\n\
  1862     (use -source 7 or higher to enable try-with-resources)
  1864 compiler.warn.enum.as.identifier=\
  1865     as of release 5, ''enum'' is a keyword, and may not be used as an identifier\n\
  1866     (use -source 5 or higher to use ''enum'' as a keyword)
  1868 compiler.warn.assert.as.identifier=\
  1869     as of release 1.4, ''assert'' is a keyword, and may not be used as an identifier\n\
  1870     (use -source 1.4 or higher to use ''assert'' as a keyword)
  1872 compiler.err.enum.as.identifier=\
  1873     as of release 5, ''enum'' is a keyword, and may not be used as an identifier\n\
  1874     (use -source 1.4 or lower to use ''enum'' as an identifier)
  1876 compiler.err.assert.as.identifier=\
  1877     as of release 1.4, ''assert'' is a keyword, and may not be used as an identifier\n\
  1878     (use -source 1.3 or lower to use ''assert'' as an identifier)
  1880 # 0: string
  1881 compiler.err.generics.not.supported.in.source=\
  1882     generics are not supported in -source {0}\n\
  1883     (use -source 5 or higher to enable generics)
  1885 # 0: string
  1886 compiler.err.varargs.not.supported.in.source=\
  1887     variable-arity methods are not supported in -source {0}\n\
  1888     (use -source 5 or higher to enable variable-arity methods)
  1890 # 0: string
  1891 compiler.err.annotations.not.supported.in.source=\
  1892     annotations are not supported in -source {0}\n\
  1893     (use -source 5 or higher to enable annotations)
  1895 #308 compiler.err.type.annotations.not.supported.in.source=\
  1896 #308     type annotations are not supported in -source {0}\n\
  1897 #308 (use -source 7 or higher to enable type annotations)
  1899 # 0: string
  1900 compiler.err.foreach.not.supported.in.source=\
  1901     for-each loops are not supported in -source {0}\n\
  1902     (use -source 5 or higher to enable for-each loops)
  1904 # 0: string
  1905 compiler.err.static.import.not.supported.in.source=\
  1906     static import declarations are not supported in -source {0}\n\
  1907     (use -source 5 or higher to enable static import declarations)
  1909 # 0: string
  1910 compiler.err.enums.not.supported.in.source=\
  1911     enums are not supported in -source {0}\n\
  1912     (use -source 5 or higher to enable enums)
  1914 # 0: string
  1915 compiler.err.diamond.not.supported.in.source=\
  1916     diamond operator is not supported in -source {0}\n\
  1917     (use -source 7 or higher to enable diamond operator)
  1919 # 0: string
  1920 compiler.err.multicatch.not.supported.in.source=\
  1921     multi-catch statement is not supported in -source {0}\n\
  1922     (use -source 7 or higher to enable multi-catch statement)
  1924 # 0: string
  1925 compiler.err.string.switch.not.supported.in.source=\
  1926     strings in switch are not supported in -source {0}\n\
  1927     (use -source 7 or higher to enable strings in switch)
  1929 ########################################
  1930 # Diagnostics for where clause implementation
  1931 # used by the RichDiagnosticFormatter.
  1932 ########################################
  1934 compiler.misc.type.null=\
  1935     <null>
  1937 # X#n (where n is an int id) is disambiguated tvar name
  1938 # 0: name, 1: number
  1939 compiler.misc.type.var=\
  1940     {0}#{1}
  1942 # CAP#n (where n is an int id) is an abbreviation for 'captured type'
  1943 # 0: number
  1944 compiler.misc.captured.type=\
  1945     CAP#{0}
  1947 # <INT#n> (where n is an int id) is an abbreviation for 'intersection type'
  1948 # 0: number
  1949 compiler.misc.intersection.type=\
  1950     INT#{0}
  1952 # where clause for captured type: contains upper ('extends {1}') and lower
  1953 # ('super {2}') bound along with the wildcard that generated this captured type ({3})
  1954 # 0: type, 1: type, 2: type, 3: type
  1955 compiler.misc.where.captured=\
  1956     {0} extends {1} super: {2} from capture of {3}
  1958 # compact where clause for captured type: contains upper ('extends {1}') along
  1959 # with the wildcard that generated this captured type ({3})
  1960 # 0: type, 1: type, 2: unused, 3: type
  1961 compiler.misc.where.captured.1=\
  1962     {0} extends {1} from capture of {3}
  1964 # where clause for type variable: contains upper bound(s) ('extends {1}') along with
  1965 # the kindname ({2}) and location ({3}) in which the typevar has been declared
  1966 # 0: type, 1: list of type, 2: symbol kind, 3: symbol
  1967 compiler.misc.where.typevar=\
  1968     {0} extends {1} declared in {2} {3}
  1970 # compact where clause for type variable: contains the kindname ({2}) and location ({3})
  1971 # in which the typevar has been declared
  1972 compiler.misc.where.typevar.1=\
  1973     {0} declared in {2} {3}
  1975 # where clause for type variable: contains all the upper bound(s) ('extends {1}')
  1976 # of this intersection type
  1977 # 0: type, 1: list of type
  1978 compiler.misc.where.intersection=\
  1979     {0} extends {1}
  1981 ### Where clause headers ###
  1982 compiler.misc.where.description.captured=\
  1983     where {0} is a fresh type-variable:
  1985 # 0: set of type
  1986 compiler.misc.where.description.typevar=\
  1987     where {0} is a type-variable:
  1989 # 0: set of type
  1990 compiler.misc.where.description.intersection=\
  1991     where {0} is an intersection type:
  1993 # 0: set of type
  1994 compiler.misc.where.description.captured.1=\
  1995     where {0} are fresh type-variables:
  1997 # 0: set of type
  1998 compiler.misc.where.description.typevar.1=\
  1999     where {0} are type-variables:
  2001 compiler.misc.where.description.intersection.1=\
  2002     where {0} are intersection types:

mercurial