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

Fri, 28 Jan 2011 12:03:49 +0000

author
mcimadamore
date
Fri, 28 Jan 2011 12:03:49 +0000
changeset 845
5a43b245aed1
parent 842
3da26790ccb7
child 850
2ab47c4cd618
permissions
-rw-r--r--

6313164: javac generates code that fails byte code verification for the varargs feature
Summary: method applicability check should fail if formal varargs element type is not accessible
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 compiler.err.try.resource.trailing.semi=\
   302     illegal trailing semicolon in resources declaration
   304 # 0: symbol
   305 compiler.err.multicatch.parameter.may.not.be.assigned=\
   306     multi-catch parameter {0} may not be assigned
   308 compiler.err.finally.without.try=\
   309     ''finally'' without ''try''
   311 # 0: type, 1: message segment
   312 compiler.err.foreach.not.applicable.to.type=\
   313     for-each not applicable to expression type\n\
   314     required: {1}\n\
   315     found:    {0}
   317 compiler.err.fp.number.too.large=\
   318     floating point number too large
   320 compiler.err.fp.number.too.small=\
   321     floating point number too small
   323 compiler.err.generic.array.creation=\
   324     generic array creation
   326 compiler.err.generic.throwable=\
   327     a generic class may not extend java.lang.Throwable
   329 # 0: symbol
   330 compiler.err.icls.cant.have.static.decl=\
   331     Illegal static declaration in inner class {0}\n\
   332     modifier \''static\'' is only allowed in constant variable declarations
   334 # 0: string
   335 compiler.err.illegal.char=\
   336     illegal character: \\{0}
   338 compiler.err.illegal.char.for.encoding=\
   339     unmappable character for encoding {0}
   341 # 0: set of modifier, 1: set of modifier
   342 compiler.err.illegal.combination.of.modifiers=\
   343     illegal combination of modifiers: {0} and {1}
   345 compiler.err.illegal.enum.static.ref=\
   346     illegal reference to static field from initializer
   348 compiler.err.illegal.esc.char=\
   349     illegal escape character
   351 compiler.err.illegal.forward.ref=\
   352     illegal forward reference
   354 # 0: symbol
   355 compiler.warn.forward.ref=\
   356     reference to variable ''{0}'' before it has been initialized
   358 compiler.err.illegal.self.ref=\
   359     self-reference in initializer
   361 # 0: symbol
   362 compiler.warn.self.ref=\
   363     self-reference in initializer of variable ''{0}''
   365 compiler.err.illegal.generic.type.for.instof=\
   366     illegal generic type for instanceof
   368 # 0: type
   369 compiler.err.illegal.initializer.for.type=\
   370     illegal initializer for {0}
   372 compiler.err.illegal.line.end.in.char.lit=\
   373     illegal line end in character literal
   375 compiler.err.illegal.nonascii.digit=\
   376     illegal non-ASCII digit
   378 compiler.err.illegal.underscore=\
   379     illegal underscore
   381 # 0: symbol
   382 compiler.err.illegal.qual.not.icls=\
   383     illegal qualifier; {0} is not an inner class
   385 compiler.err.illegal.start.of.expr=\
   386     illegal start of expression
   388 compiler.err.illegal.start.of.type=\
   389     illegal start of type
   391 compiler.err.illegal.unicode.esc=\
   392     illegal unicode escape
   394 # 0: symbol
   395 compiler.err.import.requires.canonical=\
   396     import requires canonical name for {0}
   398 compiler.err.improperly.formed.type.param.missing=\
   399     improperly formed type, some parameters are missing
   401 compiler.err.improperly.formed.type.inner.raw.param=\
   402     improperly formed type, type arguments given on a raw type
   404 # 0: type, 1: type
   405 compiler.err.incomparable.types=\
   406     incomparable types: {0} and {1}
   408 # 0: number
   409 compiler.err.int.number.too.large=\
   410     integer number too large: {0}
   412 compiler.err.internal.error.cant.instantiate=\
   413     internal error; cannot instantiate {0} at {1} to ({2})
   415 compiler.err.intf.annotation.members.cant.have.params=\
   416     @interface members may not have parameters
   418 compiler.err.intf.annotation.cant.have.type.params=\
   419     @interface may not have type parameters
   421 compiler.err.intf.annotation.members.cant.have.type.params=\
   422     @interface members may not have type parameters
   424 # 0: symbol, 1: type
   425 compiler.err.intf.annotation.member.clash=\
   426     @interface member clashes with method ''{0}'' in {1}
   428 compiler.err.intf.expected.here=\
   429     interface expected here
   431 compiler.err.intf.meth.cant.have.body=\
   432     interface methods cannot have body
   434 compiler.err.invalid.annotation.member.type=\
   435     invalid type for annotation member
   437 compiler.err.invalid.binary.number=\
   438     binary numbers must contain at least one binary digit
   440 compiler.err.invalid.hex.number=\
   441     hexadecimal numbers must contain at least one hexadecimal digit
   443 compiler.err.invalid.meth.decl.ret.type.req=\
   444     invalid method declaration; return type required
   446 compiler.err.varargs.and.old.array.syntax=\
   447     legacy array notation not allowed on variable-arity parameter
   449 # 0: name
   450 compiler.err.label.already.in.use=\
   451     label {0} already in use
   453 # 0: symbol
   454 compiler.err.local.var.accessed.from.icls.needs.final=\
   455     local variable {0} is accessed from within inner class; needs to be declared final
   457 compiler.err.local.enum=\
   458     enum types must not be local
   460 compiler.err.cannot.create.array.with.type.arguments=\
   461     cannot create array with type arguments
   463 #
   464 # limits.  We don't give the limits in the diagnostic because we expect
   465 # them to change, yet we want to use the same diagnostic.  These are all
   466 # detected during code generation.
   467 #
   468 compiler.err.limit.code=\
   469     code too large
   471 compiler.err.limit.code.too.large.for.try.stmt=\
   472     code too large for try statement
   474 compiler.err.limit.dimensions=\
   475     array type has too many dimensions
   477 compiler.err.limit.locals=\
   478     too many local variables
   480 compiler.err.limit.parameters=\
   481     too many parameters
   483 compiler.err.limit.pool=\
   484     too many constants
   486 compiler.err.limit.pool.in.class=\
   487     too many constants in class {0}
   489 compiler.err.limit.stack=\
   490     code requires too much stack
   492 compiler.err.limit.string=\
   493     constant string too long
   495 compiler.err.limit.string.overflow=\
   496     UTF8 representation for string \"{0}...\" is too long for the constant pool
   498 compiler.err.malformed.fp.lit=\
   499     malformed floating point literal
   501 compiler.err.method.does.not.override.superclass=\
   502     method does not override or implement a method from a supertype
   504 compiler.err.missing.meth.body.or.decl.abstract=\
   505     missing method body, or declare abstract
   507 compiler.err.missing.ret.stmt=\
   508     missing return statement
   510 compiler.err.missing.ret.val=\
   511     missing return value
   513 # 0: set of modifier
   514 compiler.err.mod.not.allowed.here=\
   515     modifier {0} not allowed here
   517 compiler.err.intf.not.allowed.here=\
   518     interface not allowed here
   520 compiler.err.enums.must.be.static=\
   521     enum declarations allowed only in static contexts
   523 # 0: symbol, 1: symbol
   524 compiler.err.name.clash.same.erasure=\
   525     name clash: {0} and {1} have the same erasure
   527 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
   528 compiler.err.name.clash.same.erasure.no.override=\
   529     name clash: {0} in {1} and {2} in {3} have the same erasure, yet neither overrides the other
   531 compiler.err.name.reserved.for.internal.use=\
   532     {0} is reserved for internal use
   534 compiler.err.native.meth.cant.have.body=\
   535     native methods cannot have a body
   537 # 0: type, 1: type
   538 compiler.err.neither.conditional.subtype=\
   539     incompatible types for ?: neither is a subtype of the other\n\
   540     second operand: {0}\n\
   541     third operand : {1}
   543 compiler.err.new.not.allowed.in.annotation=\
   544     ''new'' not allowed in an annotation
   546 compiler.err.no.annotation.member=\
   547     no annotation member {0} in {1}
   549 compiler.err.no.encl.instance.of.type.in.scope=\
   550     no enclosing instance of type {0} is in scope
   552 compiler.err.no.intf.expected.here=\
   553     no interface expected here
   555 compiler.err.no.match.entry=\
   556     {0} has no match in entry in {1}; required {2}
   558 compiler.err.not.annotation.type=\
   559     {0} is not an annotation type
   561 # 0: symbol, 1: symbol
   562 compiler.err.not.def.access.class.intf.cant.access=\
   563     {0} in {1} is defined in an inaccessible class or interface
   565 # 0: symbol, 1: symbol
   566 compiler.err.not.def.public.cant.access=\
   567     {0} is not public in {1}; cannot be accessed from outside package
   569 # 0: name
   570 compiler.err.not.loop.label=\
   571     not a loop label: {0}
   573 compiler.err.not.stmt=\
   574     not a statement
   576 # 0: symbol
   577 compiler.err.not.encl.class=\
   578     not an enclosing class: {0}
   580 # 0: name, 1: type, 2: unused
   581 compiler.err.operator.cant.be.applied=\
   582     bad operand type {1} for unary operator ''{0}''
   584 # 0: name, 1: type, 2: type
   585 compiler.err.operator.cant.be.applied.1=\
   586     bad operand types for binary operator ''{0}''\n\
   587     first type:  {1}\n\
   588     second type: {2}
   590 compiler.err.pkg.annotations.sb.in.package-info.java=\
   591     package annotations should be in file package-info.java
   593 # 0: symbol
   594 compiler.err.pkg.clashes.with.class.of.same.name=\
   595     package {0} clashes with class of same name
   597 compiler.err.warnings.and.werror=\
   598     warnings found and -Werror specified
   600 # Errors related to annotation processing
   602 compiler.err.proc.cant.access=\
   603     cannot access {0}\n\
   604     {1}\n\
   605     Consult the following stack trace for details.\n\
   606     {2}
   608 # 0: string
   609 compiler.err.proc.cant.find.class=\
   610     Could not find class file for ''{0}''.
   612 # Print a client-generated error message; assumed to be localized, no translation required
   613 # 0: string
   614 compiler.err.proc.messager=\
   615     {0}
   617 # 0: list of string
   618 compiler.err.proc.no.explicit.annotation.processing.requested=\
   619     Class names, ''{0}'', are only accepted if annotation processing is explicitly requested
   621 compiler.err.proc.no.service=\
   622     A service loader class could not be found.\n\
   623     Either java.util.ServiceLoader or sun.misc.Service must be available.
   625 compiler.err.proc.processor.bad.option.name=\
   626     Bad option name ''{0}'' provided by processor ''{1}''
   628 # 0: string
   629 compiler.err.proc.processor.cant.instantiate=\
   630     Could not instantiate an instance of processor ''{0}''
   632 compiler.err.proc.processor.constructor.error=\
   633     Exception thrown while constructing Processor object: {0}
   635 # 0: string
   636 compiler.err.proc.processor.not.found=\
   637     Annotation processor ''{0}'' not found
   639 # 0: string
   640 compiler.err.proc.processor.wrong.type=\
   641     Annotation processor ''{0}'' does not implement javax.annotation.processing.Processor
   643 compiler.err.proc.service.problem=\
   644     Error creating a service loader to load Processors.
   646 compiler.err.proc.bad.config.file=\
   647     Bad service configuration file, or exception thrown while constructing Processor object: {0}
   649 compiler.err.proc.cant.create.loader=\
   650     Could not create class loader for annotation processors: {0}
   652 # 0: unused
   653 compiler.err.qualified.new.of.static.class=\
   654     qualified new of static class
   656 compiler.err.recursive.ctor.invocation=\
   657     recursive constructor invocation
   659 # 0: name, 1: symbol kind, 2: symbol, 3: symbol, 4: symbol kind, 5: symbol, 6: symbol
   660 compiler.err.ref.ambiguous=\
   661     reference to {0} is ambiguous, both {1} {2} in {3} and {4} {5} in {6} match
   663 compiler.err.repeated.annotation.target=\
   664     repeated annotation target
   666 compiler.err.repeated.interface=\
   667     repeated interface
   669 compiler.err.repeated.modifier=\
   670     repeated modifier
   672 # 0: symbol, 1: set of modifier, 2: symbol
   673 compiler.err.report.access=\
   674     {0} has {1} access in {2}
   676 compiler.err.ret.outside.meth=\
   677     return outside method
   679 compiler.err.signature.doesnt.match.supertype=\
   680     signature does not match {0}; incompatible supertype
   682 compiler.err.signature.doesnt.match.intf=\
   683     signature does not match {0}; incompatible interfaces
   685 # 0: symbol, 1: symbol, 2: symbol
   686 compiler.err.does.not.override.abstract=\
   687     {0} is not abstract and does not override abstract method {1} in {2}
   689 compiler.err.source.cant.overwrite.input.file=\
   690     error writing source; cannot overwrite input file {0}
   692 compiler.err.stack.sim.error=\
   693     Internal error: stack sim error on {0}
   695 compiler.err.static.imp.only.classes.and.interfaces=\
   696     static import only from classes and interfaces
   698 compiler.err.string.const.req=\
   699     constant string expression required
   701 # 0: symbol, 1: symbol
   702 compiler.err.synthetic.name.conflict=\
   703     the symbol {0} conflicts with a compiler-synthesized symbol in {1}
   705 # 0: symbol, 1: symbol
   706 compiler.warn.synthetic.name.conflict=\
   707     the symbol {0} conflicts with a compiler-synthesized symbol in {1}
   709 compiler.err.throws.not.allowed.in.intf.annotation=\
   710     throws clause not allowed in @interface members
   712 compiler.err.try.without.catch.or.finally=\
   713     ''try'' without ''catch'' or ''finally''
   715 compiler.err.try.without.catch.finally.or.resource.decls=\
   716     ''try'' without ''catch'', ''finally'' or resource declarations
   718 # 0: symbol
   719 compiler.err.type.doesnt.take.params=\
   720     type {0} does not take parameters
   722 compiler.err.type.var.cant.be.deref=\
   723     cannot select from a type variable
   725 compiler.err.type.var.may.not.be.followed.by.other.bounds=\
   726     a type variable may not be followed by other bounds
   728 compiler.err.type.var.more.than.once=\
   729     type variable {0} occurs more than once in result type of {1}; cannot be left uninstantiated
   731 compiler.err.type.var.more.than.once.in.result=\
   732     type variable {0} occurs more than once in type of {1}; cannot be left uninstantiated
   734 # 0: type, 1: type, 2: string
   735 compiler.err.types.incompatible.diff.ret=\
   736     types {0} and {1} are incompatible; both define {2}, but with unrelated return types
   738 compiler.err.unclosed.char.lit=\
   739     unclosed character literal
   741 compiler.err.unclosed.comment=\
   742     unclosed comment
   744 compiler.err.unclosed.str.lit=\
   745     unclosed string literal
   747 compiler.err.unknown.enum.constant=\
   748     in class file {0}: unknown enum constant {1}.{2}
   750 # 0: name
   751 compiler.err.unsupported.encoding=\
   752     unsupported encoding: {0}
   754 compiler.err.io.exception=\
   755     error reading source file: {0}
   757 # 0: name
   758 compiler.err.undef.label=\
   759     undefined label: {0}
   761 compiler.err.undetermined.type=\
   762     cannot infer type arguments for {0}
   764 # 0: type, 1: message segment
   765 compiler.err.undetermined.type.1=\
   766     cannot infer type arguments for {0};\n\
   767     reason: {1}
   769 # 0: list of type, 1: message segment
   770 compiler.err.invalid.inferred.types=\
   771     invalid inferred types for {0}; {1}
   773 # 0: message segment, 1: unused
   774 compiler.err.cant.apply.diamond=\
   775     cannot infer type arguments for {0}
   777 # 0: message segment, 1: message segment
   778 compiler.err.cant.apply.diamond.1=\
   779     cannot infer type arguments for {0};\n\
   780     reason: {1}
   782 compiler.err.unreachable.stmt=\
   783     unreachable statement
   785 compiler.err.initializer.must.be.able.to.complete.normally=\
   786     initializer must be able to complete normally
   788 # 0: type
   789 compiler.err.unreported.exception.need.to.catch.or.throw=\
   790     unreported exception {0}; must be caught or declared to be thrown
   792 # 0: type
   793 compiler.err.unreported.exception.default.constructor=\
   794     unreported exception {0} in default constructor
   796 compiler.err.unsupported.cross.fp.lit=\
   797     hexadecimal floating-point literals are not supported on this VM
   799 compiler.err.void.not.allowed.here=\
   800     ''void'' type not allowed here
   802 # 0: string
   803 compiler.err.wrong.number.type.args=\
   804     wrong number of type arguments; required {0}
   806 # 0: symbol
   807 compiler.err.var.might.already.be.assigned=\
   808     variable {0} might already have been assigned
   810 # 0: symbol
   811 compiler.err.var.might.not.have.been.initialized=\
   812     variable {0} might not have been initialized
   814 # 0: symbol
   815 compiler.err.var.might.be.assigned.in.loop=\
   816     variable {0} might be assigned in loop
   818 # 0: symbol, 1: message segment
   819 compiler.err.varargs.invalid.trustme.anno=\
   820     Invalid {0} annotation. {1}
   822 # 0: type
   823 compiler.misc.varargs.trustme.on.reifiable.varargs=\
   824     Varargs element type {0} is reifiable.
   826 # 0: symbol
   827 compiler.misc.varargs.trustme.on.non.varargs.meth=\
   828     Method {0} is not a varargs method.
   830 # 0: symbol
   831 compiler.misc.varargs.trustme.on.virtual.varargs=\
   832     Instance method {0} is not final.
   834 # 0: type, 1: kind, 2: symbol
   835 compiler.misc.inaccessible.varargs.type=\
   836     formal varargs element type {0} is not accessible from {1} {2}
   838 # In the following string, {1} will always be the detail message from
   839 # java.io.IOException.
   840 # 0: symbol, 1: string
   841 compiler.err.class.cant.write=\
   842     error while writing {0}: {1}
   844 # In the following string, {0} is the name of the class in the Java source.
   845 # It really should be used two times..
   846 # 0: name
   847 compiler.err.class.public.should.be.in.file=\
   848     class {0} is public, should be declared in a file named {0}.java
   850 ## All errors which do not refer to a particular line in the source code are
   851 ## preceded by this string.
   852 compiler.err.error=\
   853     error:\u0020
   855 # The following error messages do not refer to a line in the source code.
   856 compiler.err.cant.read.file=\
   857     cannot read: {0}
   859 #####
   861 # Fatal Errors
   863 compiler.misc.fatal.err.no.java.lang=\
   864     Fatal Error: Unable to find package java.lang in classpath or bootclasspath
   866 compiler.misc.fatal.err.cant.locate.meth=\
   867     Fatal Error: Unable to find method {0}
   869 compiler.misc.fatal.err.cant.locate.field=\
   870     Fatal Error: Unable to find field {0}
   872 compiler.misc.fatal.err.cant.locate.ctor=\
   873     Fatal Error: Unable to find constructor for {0}
   875 compiler.misc.fatal.err.cant.close.loader=\
   876     Fatal Error: Cannot close class loader for annotation processors
   878 #####
   880 ##
   881 ## miscellaneous strings
   882 ##
   884 compiler.misc.source.unavailable=\
   885     (source unavailable)
   887 compiler.misc.base.membership=\
   888     all your base class are belong to us
   890 # 0: string, 1: string, 2: boolean
   891 compiler.misc.x.print.processor.info=\
   892     Processor {0} matches {1} and returns {2}.
   894 # 0: number, 1: string, 2: set of symbol, 3: boolean
   895 compiler.misc.x.print.rounds=\
   896     Round {0}:\n\tinput files: {1}\n\tannotations: {2}\n\tlast round: {3}
   898 #####
   900 ## The following string will appear before all messages keyed as:
   901 ## "compiler.note".
   902 compiler.note.note=\
   903     Note:\u0020
   905 # 0: file name
   906 compiler.note.deprecated.filename=\
   907     {0} uses or overrides a deprecated API.
   909 compiler.note.deprecated.plural=\
   910     Some input files use or override a deprecated API.
   912 # The following string may appear after one of the above deprecation
   913 # messages.
   914 compiler.note.deprecated.recompile=\
   915     Recompile with -Xlint:deprecation for details.
   917 # 0: file name
   918 compiler.note.deprecated.filename.additional=\
   919     {0} has additional uses or overrides of a deprecated API.
   921 compiler.note.deprecated.plural.additional=\
   922     Some input files additionally use or override a deprecated API.
   924 # 0: file name
   925 compiler.note.unchecked.filename=\
   926     {0} uses unchecked or unsafe operations.
   928 compiler.note.unchecked.plural=\
   929     Some input files use unchecked or unsafe operations.
   931 # The following string may appear after one of the above deprecation
   932 # messages.
   933 compiler.note.unchecked.recompile=\
   934     Recompile with -Xlint:unchecked for details.
   936 # 0: file name
   937 compiler.note.unchecked.filename.additional=\
   938     {0} has additional unchecked or unsafe operations.
   940 compiler.note.unchecked.plural.additional=\
   941     Some input files additionally use unchecked or unsafe operations.
   943 # 0: file name
   944 compiler.note.sunapi.filename=\
   945     {0} uses internal proprietary API that may be removed in a future release.
   947 compiler.note.sunapi.plural=\
   948     Some input files use internal proprietary API that may be removed in a future release.
   950 # The following string may appear after one of the above sunapi messages.
   951 compiler.note.sunapi.recompile=\
   952     Recompile with -Xlint:sunapi for details.
   954 # 0: file name
   955 compiler.note.sunapi.filename.additional=\
   956     {0} uses additional internal proprietary API that may be removed in a future release.
   958 compiler.note.sunapi.plural.additional=\
   959     Some input files additionally use internal proprietary API that may be removed in a future release.
   961 # Notes related to annotation processing
   963 # Print a client-generated note; assumed to be localized, no translation required
   964 # 0: string
   965 compiler.note.proc.messager=\
   966     {0}
   968 #####
   970 # 0: number
   971 compiler.misc.count.error=\
   972     {0} error
   974 # 0: number
   975 compiler.misc.count.error.plural=\
   976     {0} errors
   978 # 0: number
   979 compiler.misc.count.warn=\
   980     {0} warning
   982 # 0: number
   983 compiler.misc.count.warn.plural=\
   984     {0} warnings
   986 compiler.misc.version.not.available=\
   987     (version info not available)
   989 ## extra output when using -verbose (JavaCompiler)
   991 # 0: symbol
   992 compiler.misc.verbose.checking.attribution=\
   993     [checking {0}]
   995 # 0: string
   996 compiler.misc.verbose.parsing.done=\
   997     [parsing completed {0}ms]
   999 # 0: file name
  1000 compiler.misc.verbose.parsing.started=\
  1001     [parsing started {0}]
  1003 # 0: string
  1004 compiler.misc.verbose.total=\
  1005     [total {0}ms]
  1007 # 0: file name
  1008 compiler.misc.verbose.wrote.file=\
  1009     [wrote {0}]
  1011 ## extra output when using -verbose (Retro)
  1012 compiler.misc.verbose.retro=\
  1013     [retrofitting {0}]
  1015 compiler.misc.verbose.retro.with=\
  1016     \tretrofitting {0} with {1}
  1018 compiler.misc.verbose.retro.with.list=\
  1019     \tretrofitting {0} with type parameters {1}, supertype {2}, interfaces {3}
  1021 ## extra output when using -verbose (code/ClassReader)
  1022 # 0: string
  1023 compiler.misc.verbose.loading=\
  1024     [loading {0}]
  1026 # 0: string
  1027 compiler.misc.verbose.sourcepath=\
  1028     [search path for source files: {0}]
  1030 # 0: string
  1031 compiler.misc.verbose.classpath=\
  1032     [search path for class files: {0}]
  1034 ## extra output when using -checkclassfile (code/ClassReader)
  1035 compiler.misc.ccf.found.later.version=\
  1036     class file has later version than expected: {0}
  1038 compiler.misc.ccf.unrecognized.attribute=\
  1039     unrecognized attribute: {0}
  1041 ## extra output when using -prompt (util/Log)
  1042 compiler.misc.resume.abort=\
  1043     R)esume, A)bort>
  1045 #####
  1047 ##
  1048 ## warnings
  1049 ##
  1051 ## All warning messages are preceded by the following string.
  1052 compiler.warn.warning=\
  1053     warning:\u0020
  1055 ## Warning messages may also include the following prefix to identify a
  1056 ## lint option
  1057 # 0: option name
  1058 compiler.warn.lintOption=\
  1059     [{0}]\u0020
  1061 # 0: symbol
  1062 compiler.warn.constant.SVUID=\
  1063     serialVersionUID must be constant in class {0}
  1065 # 0: file name
  1066 compiler.warn.dir.path.element.not.found=\
  1067     bad path element "{0}": no such directory
  1069 compiler.warn.finally.cannot.complete=\
  1070     finally clause cannot complete normally
  1072 # 0: symbol, 1: symbol
  1073 compiler.warn.has.been.deprecated=\
  1074     {0} in {1} has been deprecated
  1076 # 0: symbol
  1077 compiler.warn.sun.proprietary=\
  1078     {0} is internal proprietary API and may be removed in a future release
  1080 compiler.warn.illegal.char.for.encoding=\
  1081     unmappable character for encoding {0}
  1083 # 0: symbol
  1084 compiler.warn.improper.SVUID=\
  1085     serialVersionUID must be declared static final in class {0}
  1087 # 0: type, 1: type
  1088 compiler.warn.inexact.non-varargs.call=\
  1089     non-varargs call of varargs method with inexact argument type for last parameter;\n\
  1090     cast to {0} for a varargs call\n\
  1091     cast to {1} for a non-varargs call and to suppress this warning
  1093 # 0: symbol
  1094 compiler.warn.long.SVUID=\
  1095     serialVersionUID must be of type long in class {0}
  1097 # 0: symbol
  1098 compiler.warn.missing.SVUID=\
  1099     serializable class {0} has no definition of serialVersionUID
  1101 # 0: message segment
  1102 compiler.warn.override.varargs.missing=\
  1103     {0}; overridden method has no ''...''
  1105 # 0: message segment
  1106 compiler.warn.override.varargs.extra=\
  1107     {0}; overriding method is missing ''...''
  1109 compiler.warn.override.bridge=\
  1110     {0}; overridden method is a bridge method
  1112 # 0: symbol
  1113 compiler.warn.pkg-info.already.seen=\
  1114     a package-info.java file has already been seen for package {0}
  1116 # 0: file name
  1117 compiler.warn.path.element.not.found=\
  1118     bad path element "{0}": no such file or directory
  1120 compiler.warn.possible.fall-through.into.case=\
  1121     possible fall-through into case
  1123 # 0: type
  1124 compiler.warn.redundant.cast=\
  1125     redundant cast to {0}
  1127 # 0: number
  1128 compiler.warn.position.overflow=\
  1129     Position encoding overflows at line {0}
  1131 # 0: file name, 1: number, 2: number
  1132 compiler.warn.big.major.version=\
  1133     {0}: major version {1} is newer than {2}, the highest major version supported by this compiler.\n\
  1134     It is recommended that the compiler be upgraded.
  1136 # 0: symbol kind, 1: symbol
  1137 compiler.warn.static.not.qualified.by.type=\
  1138     static {0} should be qualified by type name, {1}, instead of by an expression
  1140 # 0: string
  1141 compiler.warn.source.no.bootclasspath=\
  1142     bootstrap class path not set in conjunction with -source {0}
  1144 # 0: name, 1: number, 2: number, 3: number, 4: number
  1145 compiler.warn.future.attr=\
  1146     {0} attribute introduced in version {1}.{2} class files is ignored in version {3}.{4} class files
  1148 # Warnings related to annotation processing
  1149 # 0: name
  1150 compiler.warn.proc.package.does.not.exist=\
  1151     package {0} does not exist
  1153 # 0: name
  1154 compiler.warn.proc.file.reopening=\
  1155     Attempt to create a file for ''{0}'' multiple times
  1157 # 0: name
  1158 compiler.warn.proc.type.already.exists=\
  1159     A file for type ''{0}'' already exists on the sourcepath or classpath
  1161 # 0: name
  1162 compiler.warn.proc.type.recreate=\
  1163     Attempt to create a file for type ''{0}'' multiple times
  1165 # 0: string
  1166 compiler.warn.proc.illegal.file.name=\
  1167     Cannot create file for illegal name ''{0}''.
  1169 # 0: string, 1: string
  1170 compiler.warn.proc.suspicious.class.name=\
  1171     Creating file for a type whose name ends in {1}: ''{0}''
  1173 # 0: name
  1174 compiler.warn.proc.file.create.last.round=\
  1175     File for type ''{0}'' created in the last round will not be subject to annotation processing.
  1177 # 0: string, 1: string
  1178 compiler.warn.proc.malformed.supported.string=\
  1179     Malformed string ''{0}'' for a supported annotation type returned by processor ''{1}''
  1181 # 0: set of string
  1182 compiler.warn.proc.annotations.without.processors=\
  1183     No processor claimed any of these annotations: {0}
  1185 # 0: source version, 1: string, 2: string
  1186 compiler.warn.proc.processor.incompatible.source.version=\
  1187     Supported source version ''{0}'' from annotation processor ''{1}'' less than -source ''{2}''
  1189 compiler.warn.proc.proc-only.requested.no.procs=\
  1190     Annotation processing without compilation requested but no processors were found.
  1192 compiler.warn.proc.use.implicit=\
  1193     Implicitly compiled files were not subject to annotation processing.\n\
  1194     Use -implicit to specify a policy for implicit compilation.
  1196 compiler.warn.proc.use.proc.or.implicit=\
  1197     Implicitly compiled files were not subject to annotation processing.\n\
  1198     Use -proc:none to disable annotation processing or -implicit to specify a policy for implicit compilation.
  1200 # Print a client-generated warning; assumed to be localized, no translation required
  1201 # 0: string
  1202 compiler.warn.proc.messager=\
  1203     {0}
  1205 # 0: set of name
  1206 compiler.warn.proc.unclosed.type.files=\
  1207     Unclosed files for the types ''{0}''; these types will not undergo annotation processing
  1209 # 0: string
  1210 compiler.warn.proc.unmatched.processor.options=\
  1211     The following options were not recognized by any processor: ''{0}''
  1213 compiler.warn.try.explicit.close.call=\
  1214     explicit call to close() on an auto-closeable resource
  1216 # 0: symbol
  1217 compiler.warn.try.resource.not.referenced=\
  1218     auto-closeable resource {0} is never referenced in body of corresponding try statement
  1220 compiler.warn.unchecked.assign=\
  1221     unchecked assignment: {0} to {1}
  1223 # 0: symbol, 1: type
  1224 compiler.warn.unchecked.assign.to.var=\
  1225     unchecked assignment to variable {0} as member of raw type {1}
  1227 # 0: symbol, 1: type
  1228 compiler.warn.unchecked.call.mbr.of.raw.type=\
  1229     unchecked call to {0} as a member of the raw type {1}
  1231 compiler.warn.unchecked.cast.to.type=\
  1232     unchecked cast to type {0}
  1234 # 0: symbol kind, 1: name, 2: list of type, 3: list of type, 4: symbol kind, 5: symbol
  1235 compiler.warn.unchecked.meth.invocation.applied=\
  1236     unchecked method invocation: {0} {1} in {4} {5} is applied to given types\n\
  1237     required: {2}\n\
  1238     found: {3}
  1240 # 0: type
  1241 compiler.warn.unchecked.generic.array.creation=\
  1242     unchecked generic array creation for varargs parameter of type {0}
  1244 # 0: type
  1245 compiler.warn.unchecked.varargs.non.reifiable.type=\
  1246     Possible heap pollution from parameterized vararg type {0}
  1248 # 0: symbol
  1249 compiler.warn.varargs.unsafe.use.varargs.param=\
  1250     Varargs method could cause heap pollution from non-reifiable varargs parameter {0}
  1252 compiler.warn.missing.deprecated.annotation=\
  1253     deprecated item is not annotated with @Deprecated
  1255 compiler.warn.invalid.archive.file=\
  1256     Unexpected file on path: {0}
  1258 compiler.warn.unexpected.archive.file=\
  1259     Unexpected extension for archive file: {0}
  1261 compiler.warn.div.zero=\
  1262     division by zero
  1264 compiler.warn.empty.if=\
  1265     empty statement after if
  1267 compiler.warn.annotation.method.not.found=\
  1268     Cannot find annotation method ''{1}()'' in type ''{0}''
  1270 compiler.warn.annotation.method.not.found.reason=\
  1271     Cannot find annotation method ''{1}()'' in type ''{0}'': {2}
  1273 # 0: type, 1: type
  1274 compiler.warn.raw.class.use=\
  1275     found raw type: {0}\n\
  1276     missing type arguments for generic class {1}
  1278 # 0: unused, 1: unused
  1279 compiler.warn.diamond.redundant.args=\
  1280     redundant type arguments in new expression (use diamond operator instead).
  1282 # 0: type, 1: type
  1283 compiler.warn.diamond.redundant.args.1=\
  1284     redundant type arguments in new expression (use diamond operator instead).\n\
  1285     explicit: {0}\n\
  1286     inferred: {1}
  1288 # 0: symbol, 1: message segment
  1289 compiler.warn.varargs.redundant.trustme.anno=\
  1290     Redundant {0} annotation. {1}
  1292 #####
  1294 ## The following are tokens which are non-terminals in the language. They should
  1295 ## be named as JLS3 calls them when translated to the appropriate language.
  1296 compiler.misc.token.identifier=\
  1297     <identifier>
  1299 compiler.misc.token.character=\
  1300     <character>
  1302 compiler.misc.token.string=\
  1303     <string>
  1305 compiler.misc.token.integer=\
  1306     <integer>
  1308 compiler.misc.token.long-integer=\
  1309     <long integer>
  1311 compiler.misc.token.float=\
  1312     <float>
  1314 compiler.misc.token.double=\
  1315     <double>
  1317 compiler.misc.token.bad-symbol=\
  1318     <bad symbol>
  1320 compiler.misc.token.end-of-input=\
  1321     <end of input>
  1323 ## The argument to the following string will always be one of the following:
  1324 ## 1. one of the above non-terminals
  1325 ## 2. a keyword (JLS1.8)
  1326 ## 3. a boolean literal (JLS3.10.3)
  1327 ## 4. the null literal (JLS3.10.7)
  1328 ## 5. a Java separator (JLS3.11)
  1329 ## 6. an operator (JLS3.12)
  1330 ##
  1331 ## This is the only place these tokens will be used.
  1332 # 0: token
  1333 compiler.err.expected=\
  1334     {0} expected
  1336 # 0: token, 1: token
  1337 compiler.err.expected2=\
  1338     {0} or {1} expected
  1340 # 0: token, 1: token, 2: token
  1341 compiler.err.expected3=\
  1342     {0}, {1}, or {2} expected
  1344 compiler.err.premature.eof=\
  1345     reached end of file while parsing
  1347 ## The following are related in form, but do not easily fit the above paradigm.
  1348 compiler.err.dot.class.expected=\
  1349     ''.class'' expected
  1351 ## The argument to this string will always be either 'case' or 'default'.
  1352 # 0: token
  1353 compiler.err.orphaned=\
  1354     orphaned {0}
  1356 # 0: name
  1357 compiler.misc.anonymous.class=\
  1358     <anonymous {0}>
  1360 # 0: name, 1: type
  1361 compiler.misc.type.captureof=\
  1362     capture#{0} of {1}
  1364 compiler.misc.type.captureof.1=\
  1365     capture#{0}
  1367 compiler.misc.type.none=\
  1368     <none>
  1370 compiler.misc.unnamed.package=\
  1371     unnamed package
  1373 #####
  1375 # 0: symbol, 1: message segment
  1376 compiler.err.cant.access=\
  1377     cannot access {0}\n\
  1378     {1}
  1380 compiler.misc.bad.class.file.header=\
  1381     bad class file: {0}\n\
  1382     {1}\n\
  1383     Please remove or make sure it appears in the correct subdirectory of the classpath.
  1385 # 0: file name, 1: message segment
  1386 compiler.misc.bad.source.file.header=\
  1387     bad source file: {0}\n\
  1388     {1}\n\
  1389     Please remove or make sure it appears in the correct subdirectory of the sourcepath.
  1391 ## The following are all possible strings for the second argument ({1}) of the
  1392 ## above strings.
  1393 compiler.misc.bad.class.signature=\
  1394     bad class signature: {0}
  1396 compiler.misc.bad.enclosing.method=\
  1397     bad enclosing method attribute: {0}
  1399 compiler.misc.bad.runtime.invisible.param.annotations=\
  1400     bad RuntimeInvisibleParameterAnnotations attribute: {0}
  1402 compiler.misc.bad.const.pool.tag=\
  1403     bad constant pool tag: {0}
  1405 compiler.misc.bad.const.pool.tag.at=\
  1406     bad constant pool tag: {0} at {1}
  1408 compiler.misc.bad.signature=\
  1409     bad signature: {0}
  1411 compiler.misc.class.file.wrong.class=\
  1412     class file contains wrong class: {0}
  1414 compiler.misc.class.file.not.found=\
  1415     class file for {0} not found
  1417 # 0: name
  1418 compiler.misc.file.doesnt.contain.class=\
  1419     file does not contain class {0}
  1421 compiler.misc.file.does.not.contain.package=\
  1422     file does not contain package {0}
  1424 compiler.misc.illegal.start.of.class.file=\
  1425     illegal start of class file
  1427 compiler.misc.unable.to.access.file=\
  1428     unable to access file: {0}
  1430 compiler.misc.unicode.str.not.supported=\
  1431     unicode string in class file not supported
  1433 compiler.misc.undecl.type.var=\
  1434     undeclared type variable: {0}
  1436 compiler.misc.wrong.version=\
  1437     class file has wrong version {0}.{1}, should be {2}.{3}
  1439 #####
  1441 # 0: type, 1: type or symbol
  1442 compiler.err.not.within.bounds=\
  1443     type argument {0} is not within bounds of type-variable {1}
  1445 ## The following are all possible strings for the second argument ({1}) of the
  1446 ## above string.
  1448 ## none yet...
  1450 #####
  1452 # 0: message segment, 1: type, 2: type
  1453 compiler.err.prob.found.req=\
  1454     {0}\n\
  1455     required: {2}\n\
  1456     found:    {1}
  1458 # 0: message segment, 1: type, 2: type
  1459 compiler.warn.prob.found.req=\
  1460     {0}\n\
  1461     required: {2}\n\
  1462     found:    {1}
  1464 compiler.err.prob.found.req.1=\
  1465     {0} {3}\n\
  1466     required: {2}\n\
  1467     found:    {1}
  1469 ## The following are all possible strings for the first argument ({0}) of the
  1470 ## above strings.
  1471 compiler.misc.incompatible.types=\
  1472     incompatible types
  1474 # 0: message segment
  1475 compiler.misc.incompatible.types.1=\
  1476     incompatible types; {0}
  1478 compiler.misc.inconvertible.types=\
  1479     inconvertible types
  1481 compiler.misc.possible.loss.of.precision=\
  1482     possible loss of precision
  1484 compiler.misc.unchecked.assign=\
  1485     unchecked conversion
  1487 # compiler.misc.storecheck=\
  1488 #     assignment might cause later store checks to fail
  1489 # compiler.misc.unchecked=\
  1490 #     assigned array cannot dynamically check its stores
  1491 compiler.misc.unchecked.cast.to.type=\
  1492     unchecked cast
  1494 compiler.misc.assignment.from.super-bound=\
  1495     assignment from super-bound type {0}
  1497 compiler.misc.assignment.to.extends-bound=\
  1498     assignment to extends-bound type {0}
  1500 # compiler.err.star.expected=\
  1501 #     ''*'' expected
  1502 # compiler.err.no.elem.type=\
  1503 #     \[\*\] cannot have a type
  1505 compiler.misc.try.not.applicable.to.type=\
  1506     try-with-resources not applicable to variable type
  1508 #####
  1510 # 0: message segment or type, 1: message segment
  1511 compiler.err.type.found.req=\
  1512     unexpected type\n\
  1513     required: {1}\n\
  1514     found:    {0}
  1516 ## The following are all possible strings for the first argument ({0}) of the
  1517 ## above string.
  1518 compiler.misc.type.req.class=\
  1519     class
  1521 compiler.misc.type.req.class.array=\
  1522     class or array
  1524 compiler.misc.type.req.array.or.iterable=\
  1525     array or java.lang.Iterable
  1527 compiler.misc.type.req.ref=\
  1528     reference
  1530 compiler.misc.type.req.exact=\
  1531     class or interface without bounds
  1533 # 0: type
  1534 compiler.misc.type.parameter=\
  1535     type parameter {0}
  1537 #####
  1539 ## The following are all possible strings for the last argument of all those
  1540 ## diagnostics whose key ends in ".1"
  1541 compiler.misc.undetermined.type=\
  1542     undetermined type
  1544 compiler.misc.type.variable.has.undetermined.type=\
  1545     type variable {0} has undetermined type
  1547 # 0: type, 1: list of type
  1548 compiler.misc.no.unique.maximal.instance.exists=\
  1549     no unique maximal instance exists for type variable {0} with upper bounds {1}
  1551 compiler.misc.no.unique.minimal.instance.exists=\
  1552     no unique minimal instance exists for type variable {0} with lower bounds {1}
  1554 # 0: list of type, 1: type, 2: type
  1555 compiler.misc.infer.no.conforming.instance.exists=\
  1556     no instance(s) of type variable(s) {0} exist so that {1} conforms to {2}
  1558 # 0: list of type, 1: type, 2: type
  1559 compiler.misc.infer.no.conforming.assignment.exists=\
  1560     no instance(s) of type variable(s) {0} exist so that argument type {1} conforms to formal parameter type {2}
  1562 compiler.misc.infer.arg.length.mismatch=\
  1563     cannot instantiate from arguments because actual and formal argument lists differ in length
  1565 # 0: type, 1: list of type
  1566 compiler.misc.inferred.do.not.conform.to.bounds=\
  1567     inferred type does not conform to declared bound(s)\n\
  1568     inferred: {0}\n\
  1569     bound(s): {1}
  1571 # 0: symbol
  1572 compiler.misc.diamond=\
  1573     {0}<>
  1575 # 0: list of type, 1: message segment
  1576 compiler.misc.diamond.invalid.arg=\
  1577     type argument {0} inferred for {1} is not allowed in this context
  1579 # 0: list of type, 1: message segment
  1580 compiler.misc.diamond.invalid.args=\
  1581     type arguments {0} inferred for {1} are not allowed in this context
  1583 # 0: type, 1: list of type
  1584 compiler.misc.explicit.param.do.not.conform.to.bounds=\
  1585     explicit type argument {0} does not conform to declared bound(s) {1}
  1587 compiler.misc.arg.length.mismatch=\
  1588     actual and formal argument lists differ in length
  1590 # 0: type, 1: type
  1591 compiler.misc.no.conforming.assignment.exists=\
  1592     actual argument {0} cannot be converted to {1} by method invocation conversion
  1594 # 0: type, 1: type
  1595 compiler.misc.varargs.argument.mismatch=\
  1596     argument type {0} does not conform to vararg element type {1}
  1598 #####
  1600 ## The first argument ({0}) is a "kindname".
  1601 # 0: symbol kind, 1: symbol, 2: symbol
  1602 compiler.err.abstract.cant.be.accessed.directly=\
  1603     abstract {0} {1} in {2} cannot be accessed directly
  1605 ## The first argument ({0}) is a "kindname".
  1606 # 0: symbol kind, 1: symbol
  1607 compiler.err.non-static.cant.be.ref=\
  1608     non-static {0} {1} cannot be referenced from a static context
  1610 ## Both arguments ({0}, {1}) are "kindname"s.  {0} is a comma-separated list
  1611 ## of kindnames (the list should be identical to that provided in source.
  1612 compiler.err.unexpected.type=\
  1613     unexpected type\n\
  1614     required: {0}\n\
  1615     found:    {1}
  1617 ## The first argument {0} is a "kindname" (e.g. 'constructor', 'field', etc.)
  1618 ## The second argument {1} is the non-resolved symbol
  1619 ## The third argument {2} is a list of type parameters (non-empty if {1} is a method)
  1620 ## The fourth argument {3} is a list of argument types (non-empty if {1} is a method)
  1621 # 0: symbol kind, 1: name, 2: unused, 3: unused
  1622 compiler.err.cant.resolve=\
  1623     cannot find symbol\n\
  1624     symbol: {0} {1}
  1626 # 0: symbol kind, 1: name, 2: unused, 3: list of type
  1627 compiler.err.cant.resolve.args=\
  1628     cannot find symbol\n\
  1629     symbol: {0} {1}({3})
  1631 # 0: symbol kind, 1: name, 2: list of type, 3: list of type
  1632 compiler.err.cant.resolve.args.params=\
  1633     cannot find symbol\n\
  1634     symbol: {0} <{2}>{1}({3})
  1636 ## arguments from {0} to {3} have the same meaning as above
  1637 ## The fifth argument {4} is a location subdiagnostic (see below)
  1638 # 0: symbol kind, 1: name, 2: unused, 3: unused, 4: message segment
  1639 compiler.err.cant.resolve.location=\
  1640     cannot find symbol\n\
  1641     symbol:   {0} {1}\n\
  1642     location: {4}
  1644 # 0: symbol kind, 1: name, 2: unused, 3: list of type, 4: message segment
  1645 compiler.err.cant.resolve.location.args=\
  1646     cannot find symbol\n\
  1647     symbol:   {0} {1}({3})\n\
  1648     location: {4}
  1650 # 0: symbol kind, 1: name, 2: list of type, 3: list, 4: message segment
  1651 compiler.err.cant.resolve.location.args.params=\
  1652     cannot find symbol\n\
  1653     symbol:   {0} <{2}>{1}({3})\n\
  1654     location: {4}
  1656 ##a location subdiagnostic is composed as follows:
  1657 ## The first argument {0} is the location "kindname" (e.g. 'constructor', 'field', etc.)
  1658 ## The second argument {1} is the location name
  1659 ## The third argument {2} is the location type (only when {1} is a variable name)
  1661 # 0: symbol kind, 1: symbol, 2: unused
  1662 compiler.misc.location=\
  1663     {0} {1}
  1665 # 0: symbol kind, 1: symbol, 2: type
  1666 compiler.misc.location.1=\
  1667     {0} {1} of type {2}
  1669 ## The following are all possible string for "kindname".
  1670 ## They should be called whatever the JLS calls them after it been translated
  1671 ## to the appropriate language.
  1672 # compiler.misc.kindname.constructor=\
  1673 #     static member
  1674 compiler.misc.kindname.annotation=\
  1675     @interface
  1677 compiler.misc.kindname.constructor=\
  1678     constructor
  1680 compiler.misc.kindname.enum=\
  1681     enum
  1683 compiler.misc.kindname.interface=\
  1684     interface
  1686 compiler.misc.kindname.static=\
  1687     static
  1689 compiler.misc.kindname.type.variable=\
  1690     type variable
  1692 compiler.misc.kindname.type.variable.bound=\
  1693     bound of type variable
  1695 compiler.misc.kindname.variable=\
  1696     variable
  1698 compiler.misc.kindname.value=\
  1699     value
  1701 compiler.misc.kindname.method=\
  1702     method
  1704 compiler.misc.kindname.class=\
  1705     class
  1707 compiler.misc.kindname.package=\
  1708     package
  1710 #####
  1712 compiler.misc.no.args=\
  1713     no arguments
  1715 # 0: message segment
  1716 compiler.err.override.static=\
  1717     {0}\n\
  1718     overriding method is static
  1720 # 0: message segment, 1: set of modifier
  1721 compiler.err.override.meth=\
  1722     {0}\n\
  1723     overridden method is {1}
  1725 # 0: message segment, 1: type
  1726 compiler.err.override.meth.doesnt.throw=\
  1727     {0}\n\
  1728     overridden method does not throw {1}
  1730 # In the following string {1} is a space separated list of Java Keywords, as
  1731 # they would have been declared in the source code
  1732 # 0: message segment, 1: set of modifier
  1733 compiler.err.override.weaker.access=\
  1734     {0}\n\
  1735     attempting to assign weaker access privileges; was {1}
  1737 # 0: message segment, 1: type, 2: type
  1738 compiler.err.override.incompatible.ret=\
  1739     {0}\n\
  1740     return type {1} is not compatible with {2}
  1742 # 0: message segment, 1: type, 2: type
  1743 compiler.warn.override.unchecked.ret=\
  1744     {0}\n\
  1745     return type requires unchecked conversion from {1} to {2}
  1747 # 0: message segment, 1: type
  1748 compiler.warn.override.unchecked.thrown=\
  1749     {0}\n\
  1750     overridden method does not throw {1}
  1752 ## The following are all possible strings for the first argument ({0}) of the
  1753 ## above strings.
  1754 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1755 compiler.misc.cant.override=\
  1756     {0} in {1} cannot override {2} in {3}
  1758 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1759 compiler.misc.cant.implement=\
  1760     {0} in {1} cannot implement {2} in {3}
  1762 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1763 compiler.misc.clashes.with=\
  1764     {0} in {1} clashes with {2} in {3}
  1766 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1767 compiler.misc.unchecked.override=\
  1768     {0} in {1} overrides {2} in {3}
  1770 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1771 compiler.misc.unchecked.implement=\
  1772     {0} in {1} implements {2} in {3}
  1774 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1775 compiler.misc.unchecked.clash.with=\
  1776     {0} in {1} overrides {2} in {3}
  1778 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1779 compiler.misc.varargs.override=\
  1780     {0} in {1} overrides {2} in {3}
  1782 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1783 compiler.misc.varargs.implement=\
  1784     {0} in {1} implements {2} in {3}
  1786 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
  1787 compiler.misc.varargs.clash.with=\
  1788     {0} in {1} overrides {2} in {3}
  1790 compiler.misc.non.denotable.type=\
  1791     Non-denotable type {0} not allowed here
  1793 # 0: symbol kind, 1: symbol, 2: symbol, 3: message segment
  1794 compiler.misc.inapplicable.method=\
  1795     {0} {1}.{2} is not applicable\n\
  1796     ({3})
  1798 ########################################
  1799 # Diagnostics for language feature changes
  1800 ########################################
  1801 # 0: string
  1802 compiler.err.unsupported.fp.lit=\
  1803     hexadecimal floating point literals are not supported in -source {0}\n\
  1804     (use -source 5 or higher to enable hexadecimal floating point literals)
  1806 # 0: string
  1807 compiler.err.unsupported.binary.lit=\
  1808     binary literals are not supported in -source {0}\n\
  1809     (use -source 7 or higher to enable binary literals)
  1811 # 0: string
  1812 compiler.err.unsupported.underscore.lit=\
  1813     underscores in literals are not supported in -source {0}\n\
  1814     (use -source 7 or higher to enable underscores in literals)
  1816 # 0: string
  1817 compiler.err.try.with.resources.not.supported.in.source=\
  1818     try-with-resources is not supported in -source {0}\n\
  1819     (use -source 7 or higher to enable try-with-resources)
  1821 compiler.warn.enum.as.identifier=\
  1822     as of release 5, ''enum'' is a keyword, and may not be used as an identifier\n\
  1823     (use -source 5 or higher to use ''enum'' as a keyword)
  1825 compiler.warn.assert.as.identifier=\
  1826     as of release 1.4, ''assert'' is a keyword, and may not be used as an identifier\n\
  1827     (use -source 1.4 or higher to use ''assert'' as a keyword)
  1829 compiler.err.enum.as.identifier=\
  1830     as of release 5, ''enum'' is a keyword, and may not be used as an identifier\n\
  1831     (use -source 1.4 or lower to use ''enum'' as an identifier)
  1833 compiler.err.assert.as.identifier=\
  1834     as of release 1.4, ''assert'' is a keyword, and may not be used as an identifier\n\
  1835     (use -source 1.3 or lower to use ''assert'' as an identifier)
  1837 # 0: string
  1838 compiler.err.generics.not.supported.in.source=\
  1839     generics are not supported in -source {0}\n\
  1840     (use -source 5 or higher to enable generics)
  1842 # 0: string
  1843 compiler.err.varargs.not.supported.in.source=\
  1844     variable-arity methods are not supported in -source {0}\n\
  1845     (use -source 5 or higher to enable variable-arity methods)
  1847 # 0: string
  1848 compiler.err.annotations.not.supported.in.source=\
  1849     annotations are not supported in -source {0}\n\
  1850     (use -source 5 or higher to enable annotations)
  1852 #308 compiler.err.type.annotations.not.supported.in.source=\
  1853 #308     type annotations are not supported in -source {0}\n\
  1854 #308 (use -source 7 or higher to enable type annotations)
  1856 # 0: string
  1857 compiler.err.foreach.not.supported.in.source=\
  1858     for-each loops are not supported in -source {0}\n\
  1859     (use -source 5 or higher to enable for-each loops)
  1861 # 0: string
  1862 compiler.err.static.import.not.supported.in.source=\
  1863     static import declarations are not supported in -source {0}\n\
  1864     (use -source 5 or higher to enable static import declarations)
  1866 # 0: string
  1867 compiler.err.enums.not.supported.in.source=\
  1868     enums are not supported in -source {0}\n\
  1869     (use -source 5 or higher to enable enums)
  1871 # 0: string
  1872 compiler.err.diamond.not.supported.in.source=\
  1873     diamond operator is not supported in -source {0}\n\
  1874     (use -source 7 or higher to enable diamond operator)
  1876 # 0: string
  1877 compiler.err.multicatch.not.supported.in.source=\
  1878     multi-catch statement is not supported in -source {0}\n\
  1879     (use -source 7 or higher to enable multi-catch statement)
  1881 # 0: string
  1882 compiler.err.string.switch.not.supported.in.source=\
  1883     strings in switch are not supported in -source {0}\n\
  1884     (use -source 7 or higher to enable strings in switch)
  1886 ########################################
  1887 # Diagnostics for where clause implementation
  1888 # used by the RichDiagnosticFormatter.
  1889 ########################################
  1891 compiler.misc.type.null=\
  1892     <null>
  1894 # X#n (where n is an int id) is disambiguated tvar name
  1895 # 0: name, 1: number
  1896 compiler.misc.type.var=\
  1897     {0}#{1}
  1899 # CAP#n (where n is an int id) is an abbreviation for 'captured type'
  1900 # 0: number
  1901 compiler.misc.captured.type=\
  1902     CAP#{0}
  1904 # <INT#n> (where n is an int id) is an abbreviation for 'intersection type'
  1905 # 0: number
  1906 compiler.misc.intersection.type=\
  1907     INT#{0}
  1909 # where clause for captured type: contains upper ('extends {1}') and lower
  1910 # ('super {2}') bound along with the wildcard that generated this captured type ({3})
  1911 # 0: type, 1: type, 2: type, 3: type
  1912 compiler.misc.where.captured=\
  1913     {0} extends {1} super: {2} from capture of {3}
  1915 # compact where clause for captured type: contains upper ('extends {1}') along
  1916 # with the wildcard that generated this captured type ({3})
  1917 # 0: type, 1: type, 2: unused, 3: type
  1918 compiler.misc.where.captured.1=\
  1919     {0} extends {1} from capture of {3}
  1921 # where clause for type variable: contains upper bound(s) ('extends {1}') along with
  1922 # the kindname ({2}) and location ({3}) in which the typevar has been declared
  1923 # 0: type, 1: list of type, 2: symbol kind, 3: symbol
  1924 compiler.misc.where.typevar=\
  1925     {0} extends {1} declared in {2} {3}
  1927 # compact where clause for type variable: contains the kindname ({2}) and location ({3})
  1928 # in which the typevar has been declared
  1929 compiler.misc.where.typevar.1=\
  1930     {0} declared in {2} {3}
  1932 # where clause for type variable: contains all the upper bound(s) ('extends {1}')
  1933 # of this intersection type
  1934 # 0: type, 1: list of type
  1935 compiler.misc.where.intersection=\
  1936     {0} extends {1}
  1938 ### Where clause headers ###
  1939 compiler.misc.where.description.captured=\
  1940     where {0} is a fresh type-variable:
  1942 # 0: set of type
  1943 compiler.misc.where.description.typevar=\
  1944     where {0} is a type-variable:
  1946 # 0: set of type
  1947 compiler.misc.where.description.intersection=\
  1948     where {0} is an intersection type:
  1950 # 0: set of type
  1951 compiler.misc.where.description.captured.1=\
  1952     where {0} are fresh type-variables:
  1954 # 0: set of type
  1955 compiler.misc.where.description.typevar.1=\
  1956     where {0} are type-variables:
  1958 compiler.misc.where.description.intersection.1=\
  1959     where {0} are intersection types:

mercurial