1 #
   2 # Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  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.
  56 
  57 ##
  58 ## errors
  59 ##
  60 
  61 # 0: symbol
  62 compiler.err.abstract.cant.be.instantiated=\
  63     {0} is abstract; cannot be instantiated
  64 
  65 compiler.err.abstract.meth.cant.have.body=\
  66     abstract methods cannot have a body
  67 
  68 compiler.err.already.annotated=\
  69     {0} {1} has already been annotated
  70 
  71 # 0: symbol kind, 1: symbol, 2: symbol kind, 3: symbol
  72 compiler.err.already.defined=\
  73     {0} {1} is already defined in {2} {3}
  74 
  75 # 0: symbol kind, 1: symbol, 2: symbol kind, 3: symbol kind, 4: symbol
  76 compiler.err.already.defined.in.clinit=\
  77     {0} {1} is already defined in {2} of {3} {4}
  78 
  79 # 0: string
  80 compiler.err.already.defined.single.import=\
  81     {0} is already defined in a single-type import
  82 
  83 # 0: string
  84 compiler.err.already.defined.static.single.import=\
  85     {0} is already defined in a static single-type import
  86 
  87 compiler.err.already.defined.this.unit=\
  88     {0} is already defined in this compilation unit
  89 
  90 # 0: type, 1: list of name
  91 compiler.err.annotation.missing.default.value=\
  92     annotation {0} is missing value for the attribute {1}
  93 
  94 # 0: type, 1: list of name
  95 compiler.err.annotation.missing.default.value.1=\
  96     annotation {0} is missing values for attributes {1}
  97 
  98 # 0: type
  99 compiler.err.annotation.not.valid.for.type=\
 100     annotation not valid for a value of type {0}
 101 
 102 compiler.err.annotation.type.not.applicable=\
 103     annotation type not applicable to this kind of declaration
 104 
 105 compiler.err.annotation.value.must.be.annotation=\
 106     annotation value must be an annotation
 107 
 108 compiler.err.annotation.value.must.be.class.literal=\
 109     annotation value must be a class literal
 110 
 111 compiler.err.annotation.value.must.be.name.value=\
 112     annotation values must be of the form ''name=value''
 113 
 114 compiler.err.annotation.value.not.allowable.type=\
 115     annotation value not of an allowable type
 116 
 117 compiler.err.anon.class.impl.intf.no.args=\
 118     anonymous class implements interface; cannot have arguments
 119 
 120 compiler.err.anon.class.impl.intf.no.typeargs=\
 121     anonymous class implements interface; cannot have type arguments
 122 
 123 compiler.err.anon.class.impl.intf.no.qual.for.new=\
 124     anonymous class implements interface; cannot have qualifier for new
 125 
 126 # 0: symbol, 1: symbol, 2: symbol
 127 compiler.err.array.and.varargs=\
 128     cannot declare both {0} and {1} in {2}
 129 
 130 compiler.err.array.dimension.missing=\
 131     array dimension missing
 132 
 133 # 0: type
 134 compiler.err.array.req.but.found=\
 135     array required, but {0} found
 136 
 137 compiler.err.attribute.value.must.be.constant=\
 138     attribute value must be constant
 139 
 140 # 0: statement type
 141 compiler.err.bad.initializer=\
 142     bad initializer for {0}
 143 
 144 compiler.err.break.outside.switch.loop=\
 145     break outside switch or loop
 146 
 147 # 0: name
 148 compiler.err.call.must.be.first.stmt.in.ctor=\
 149     call to {0} must be first statement in constructor
 150 
 151 # 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
 152 compiler.err.cant.apply.symbol=\
 153     {0} {1} in {4} {5} cannot be applied to given types;\n\
 154     required: {2}\n\
 155     found: {3}\n\
 156     reason: {6}
 157 
 158 # 0: symbol kind, 1: name, 2: list of type
 159 compiler.err.cant.apply.symbols=\
 160     no suitable {0} found for {1}({2})
 161 
 162 # 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
 163 compiler.misc.cant.apply.symbol=\
 164     {0} {1} in {4} {5} cannot be applied to given types\n\
 165     required: {2}\n\
 166     found: {3}\n\
 167     reason: {6}
 168 
 169 # 0: symbol kind, 1: name, 2: list of type
 170 compiler.misc.cant.apply.symbols=\
 171     no suitable {0} found for {1}({2})
 172 
 173 # 0: symbol kind, 1: symbol
 174 compiler.misc.no.abstracts=\
 175     no abstract method found in {0} {1}
 176 
 177 # 0: symbol kind, 1: symbol
 178 compiler.misc.incompatible.abstracts=\
 179     multiple non-overriding abstract methods found in {0} {1}
 180 
 181 compiler.err.bad.functional.intf.anno=\
 182     Unexpected @FunctionalInterface annotation
 183 
 184 # 0: message segment
 185 compiler.err.bad.functional.intf.anno.1=\
 186     Unexpected @FunctionalInterface annotation\n\
 187     {0}
 188 
 189 # 0: symbol
 190 compiler.misc.not.a.functional.intf=\
 191     {0} is not a functional interface
 192 
 193 # 0: symbol, 1: message segment
 194 compiler.misc.not.a.functional.intf.1=\
 195     {0} is not a functional interface\n\
 196     {1}
 197 
 198 # 0: symbol, 1: symbol kind, 2: symbol
 199 compiler.misc.invalid.generic.lambda.target=\
 200     invalid functional descriptor for lambda expression\n\
 201     method {0} in {1} {2} is generic
 202 
 203 # 0: symbol kind, 1: symbol
 204 compiler.misc.incompatible.descs.in.functional.intf=\
 205     incompatible function descriptors found in {0} {1}
 206 
 207 # 0: name, 1: list of type, 2: type, 3: list of type
 208 compiler.misc.descriptor=\
 209     descriptor: {2} {0}({1})
 210 
 211 # 0: name, 1: list of type, 2: type, 3: list of type
 212 compiler.misc.descriptor.throws=\
 213     descriptor: {2} {0}({1}) throws {3}
 214 
 215 # 0: type
 216 compiler.misc.no.suitable.functional.intf.inst=\
 217     cannot infer functional interface descriptor for {0}
 218 
 219 # 0: message segment
 220 compiler.misc.bad.intersection.target.for.functional.expr=\
 221     bad intersection type target for lambda or method reference\n\
 222     {0}
 223 
 224 # 0: symbol or type
 225 compiler.misc.not.an.intf.component=\
 226     component type {0} is not an interface
 227 
 228 # 0: symbol kind, 1: message segment
 229 compiler.err.invalid.mref=\
 230     invalid {0} reference\n\
 231     {1}
 232 
 233 # 0: symbol kind, 1: message segment
 234 compiler.misc.invalid.mref=\
 235     invalid {0} reference\n\
 236     {1}
 237 
 238 compiler.misc.static.mref.with.targs=\
 239     parameterized qualifier on static method reference
 240 
 241 compiler.misc.static.bound.mref=\
 242     static bound method reference
 243 
 244 # 0: symbol
 245 compiler.err.cant.assign.val.to.final.var=\
 246     cannot assign a value to final variable {0}
 247 
 248 # 0: symbol, 1: message segment
 249 compiler.err.cant.ref.non.effectively.final.var=\
 250     local variables referenced from {1} must be final or effectively final
 251 
 252 
 253 compiler.misc.lambda=\
 254     a lambda expression
 255 
 256 compiler.misc.inner.cls=\
 257     an inner class
 258 
 259 # 0: type
 260 compiler.err.cant.deref=\
 261     {0} cannot be dereferenced
 262 
 263 compiler.err.cant.extend.intf.annotation=\
 264     ''extends'' not allowed for @interfaces
 265 
 266 # 0: symbol
 267 compiler.err.cant.inherit.from.final=\
 268     cannot inherit from final {0}
 269 
 270 # 0: symbol
 271 compiler.err.cant.ref.before.ctor.called=\
 272     cannot reference {0} before supertype constructor has been called
 273 
 274 compiler.err.cant.select.static.class.from.param.type=\
 275     cannot select a static class from a parameterized type
 276 
 277 # 0: symbol, 1: string, 2: string
 278 compiler.err.cant.inherit.diff.arg=\
 279     {0} cannot be inherited with different arguments: <{1}> and <{2}>
 280 
 281 compiler.err.catch.without.try=\
 282     ''catch'' without ''try''
 283 
 284 # 0: symbol kind, 1: symbol
 285 compiler.err.clash.with.pkg.of.same.name=\
 286     {0} {1} clashes with package of same name
 287 
 288 compiler.err.class.not.allowed=\
 289     class, interface or enum declaration not allowed here
 290 
 291 compiler.err.const.expr.req=\
 292     constant expression required
 293 
 294 compiler.err.cont.outside.loop=\
 295     continue outside of loop
 296 
 297 # 0: symbol
 298 compiler.err.cyclic.inheritance=\
 299     cyclic inheritance involving {0}
 300 
 301 compiler.err.cyclic.annotation.element=\
 302     cyclic annotation element type
 303 
 304 # 0: unused
 305 compiler.err.call.to.super.not.allowed.in.enum.ctor=\
 306     call to super not allowed in enum constructor
 307 
 308 # 0: type
 309 compiler.err.no.superclass=\
 310     {0} has no superclass
 311 
 312 # 0: symbol, 1: type, 2: symbol, 3: type, 4: unused
 313 compiler.err.concrete.inheritance.conflict=\
 314     methods {0} from {1} and {2} from {3} are inherited with the same signature
 315 
 316 compiler.err.default.allowed.in.intf.annotation.member=\
 317     default value only allowed in an @interface member
 318 
 319 # 0: symbol
 320 compiler.err.doesnt.exist=\
 321     package {0} does not exist
 322 
 323 compiler.err.duplicate.annotation=\
 324     duplicate annotation
 325 
 326 # 0: type
 327 compiler.err.duplicate.annotation.invalid.repeated=\
 328     annotation {0} cannot be repeated\nIt does not define a valid containing annotation.
 329 
 330 # 0: name, 1: type
 331 compiler.err.duplicate.annotation.member.value=\
 332     duplicate annotation member value {0} in {1}
 333 
 334 # 0: type, 1: type
 335 compiler.err.duplicate.annotation.missing.container=\
 336     duplicate annotation: the declaration of {0} does not have a valid {1} annotation
 337 
 338 # 0: type
 339 compiler.err.invalid.repeatable.annotation=\
 340     duplicate annotation: {0} is annotated with an invalid Repeatable annotation
 341 
 342 # 0: symbol or type
 343 compiler.err.invalid.repeatable.annotation.no.value=\
 344     duplicate annotation: {0} is not a valid Repeatable, no value element method declared
 345 
 346 # 0: type, 1: number
 347 compiler.err.invalid.repeatable.annotation.multiple.values=\
 348     duplicate annotation: {0} is not a valid Repeatable, {1} value element methods declared
 349 
 350 # 0: type
 351 compiler.err.invalid.repeatable.annotation.invalid.value=\
 352     duplicate annotation: {0} is not a valid Repeatable: invalid value element
 353 
 354 # 0: symbol type, 1: type, 2: type
 355 compiler.err.invalid.repeatable.annotation.value.return=\
 356     duplicate annotation: value element of containing annotation {0} should have type {2}, found {1}
 357 
 358 # 0: symbol or type, 1: symbol
 359 compiler.err.invalid.repeatable.annotation.elem.nondefault=\
 360     containing annotation {0} does not have a default value for element {1}
 361 
 362 # 0: symbol, 1: type, 2: symbol, 3: type
 363 compiler.err.invalid.repeatable.annotation.retention=\
 364     containing annotation {0} has shorter retention ({1}) than the contained annotation {2} with retention {3}
 365 
 366 # 0: symbol, 1: symbol
 367 compiler.err.invalid.repeatable.annotation.not.documented=\
 368     containing annotation type, {0}, is not @Documented while repeated annotation type, {1}, is
 369 
 370 # 0: symbol, 1: symbol
 371 compiler.err.invalid.repeatable.annotation.not.inherited=\
 372     containing annotation type, {0}, is not @Inherited while repeated annotation type, {1}, is
 373 
 374 # 0: symbol, 1: symbol
 375 compiler.err.invalid.repeatable.annotation.incompatible.target=\
 376     target of container annotation {0} is not a subset of target of repeated annotation {1}
 377 
 378 # 0: symbol
 379 compiler.err.invalid.repeatable.annotation.repeated.and.container.present=\
 380     container {0} must not be present at the same time as the element it contains
 381 
 382 # 0: name
 383 compiler.err.duplicate.class=\
 384     duplicate class: {0}
 385 
 386 compiler.err.duplicate.case.label=\
 387     duplicate case label
 388 
 389 compiler.err.duplicate.default.label=\
 390     duplicate default label
 391 
 392 compiler.err.else.without.if=\
 393     ''else'' without ''if''
 394 
 395 compiler.err.empty.char.lit=\
 396     empty character literal
 397 
 398 # 0: symbol
 399 compiler.err.encl.class.required=\
 400     an enclosing instance that contains {0} is required
 401 
 402 compiler.err.enum.annotation.must.be.enum.constant=\
 403     an enum annotation value must be an enum constant
 404 
 405 compiler.err.enum.cant.be.instantiated=\
 406     enum types may not be instantiated
 407 
 408 compiler.err.enum.label.must.be.unqualified.enum=\
 409     an enum switch case label must be the unqualified name of an enumeration constant
 410 
 411 compiler.err.enum.no.subclassing=\
 412     classes cannot directly extend java.lang.Enum
 413 
 414 compiler.err.enum.types.not.extensible=\
 415     enum types are not extensible
 416 
 417 compiler.err.enum.no.finalize=\
 418     enums cannot have finalize methods
 419 
 420 # 0: file name, 1: string
 421 compiler.err.error.reading.file=\
 422     error reading {0}; {1}
 423 
 424 # 0: type
 425 compiler.err.except.already.caught=\
 426     exception {0} has already been caught
 427 
 428 # 0: type
 429 compiler.err.except.never.thrown.in.try=\
 430     exception {0} is never thrown in body of corresponding try statement
 431 
 432 # 0: symbol
 433 compiler.err.final.parameter.may.not.be.assigned=\
 434     final parameter {0} may not be assigned
 435 
 436 # 0: symbol
 437 compiler.err.try.resource.may.not.be.assigned=\
 438     auto-closeable resource {0} may not be assigned
 439 
 440 # 0: symbol
 441 compiler.err.multicatch.parameter.may.not.be.assigned=\
 442     multi-catch parameter {0} may not be assigned
 443 
 444 # 0: type, 1: type
 445 compiler.err.multicatch.types.must.be.disjoint=\
 446     Alternatives in a multi-catch statement cannot be related by subclassing\n\
 447     Alternative {0} is a subclass of alternative {1}
 448 
 449 compiler.err.finally.without.try=\
 450     ''finally'' without ''try''
 451 
 452 # 0: type, 1: message segment
 453 compiler.err.foreach.not.applicable.to.type=\
 454     for-each not applicable to expression type\n\
 455     required: {1}\n\
 456     found:    {0}
 457 
 458 compiler.err.fp.number.too.large=\
 459     floating point number too large
 460 
 461 compiler.err.fp.number.too.small=\
 462     floating point number too small
 463 
 464 compiler.err.generic.array.creation=\
 465     generic array creation
 466 
 467 compiler.err.generic.throwable=\
 468     a generic class may not extend java.lang.Throwable
 469 
 470 # 0: symbol
 471 compiler.err.icls.cant.have.static.decl=\
 472     Illegal static declaration in inner class {0}\n\
 473     modifier \''static\'' is only allowed in constant variable declarations
 474 
 475 # 0: string
 476 compiler.err.illegal.char=\
 477     illegal character: ''{0}''
 478 
 479 compiler.err.illegal.char.for.encoding=\
 480     unmappable character for encoding {0}
 481 
 482 # 0: set of modifier, 1: set of modifier
 483 compiler.err.illegal.combination.of.modifiers=\
 484     illegal combination of modifiers: {0} and {1}
 485 
 486 compiler.err.illegal.enum.static.ref=\
 487     illegal reference to static field from initializer
 488 
 489 compiler.err.illegal.esc.char=\
 490     illegal escape character
 491 
 492 compiler.err.illegal.forward.ref=\
 493     illegal forward reference
 494 
 495 # 0: symbol, 1: string
 496 compiler.err.not.in.profile=\
 497     {0} is not available in profile ''{1}''
 498 
 499 # 0: symbol
 500 compiler.warn.forward.ref=\
 501     reference to variable ''{0}'' before it has been initialized
 502 
 503 compiler.err.illegal.self.ref=\
 504     self-reference in initializer
 505 
 506 # 0: symbol
 507 compiler.warn.self.ref=\
 508     self-reference in initializer of variable ''{0}''
 509 
 510 compiler.err.illegal.generic.type.for.instof=\
 511     illegal generic type for instanceof
 512 
 513 # 0: type
 514 compiler.err.illegal.initializer.for.type=\
 515     illegal initializer for {0}
 516 
 517 compiler.err.illegal.line.end.in.char.lit=\
 518     illegal line end in character literal
 519 
 520 compiler.err.illegal.nonascii.digit=\
 521     illegal non-ASCII digit
 522 
 523 compiler.err.illegal.underscore=\
 524     illegal underscore
 525 
 526 compiler.err.illegal.dot=\
 527     illegal ''.''
 528 
 529 # 0: symbol
 530 compiler.err.illegal.qual.not.icls=\
 531     illegal qualifier; {0} is not an inner class
 532 
 533 compiler.err.illegal.start.of.expr=\
 534     illegal start of expression
 535 
 536 compiler.err.illegal.start.of.stmt=\
 537     illegal start of statement
 538 
 539 compiler.err.illegal.start.of.type=\
 540     illegal start of type
 541 
 542 compiler.err.illegal.unicode.esc=\
 543     illegal unicode escape
 544 
 545 # 0: symbol
 546 compiler.err.import.requires.canonical=\
 547     import requires canonical name for {0}
 548 
 549 compiler.err.improperly.formed.type.param.missing=\
 550     improperly formed type, some parameters are missing
 551 
 552 compiler.err.improperly.formed.type.inner.raw.param=\
 553     improperly formed type, type arguments given on a raw type
 554 
 555 # 0: type, 1: type
 556 compiler.err.incomparable.types=\
 557     incomparable types: {0} and {1}
 558 
 559 # 0: number
 560 compiler.err.int.number.too.large=\
 561     integer number too large: {0}
 562 
 563 compiler.err.intf.annotation.members.cant.have.params=\
 564     @interface members may not have parameters
 565 
 566 compiler.err.intf.annotation.cant.have.type.params=\
 567     @interface may not have type parameters
 568 
 569 compiler.err.intf.annotation.members.cant.have.type.params=\
 570     @interface members may not have type parameters
 571 
 572 # 0: symbol, 1: type
 573 compiler.err.intf.annotation.member.clash=\
 574     @interface member clashes with method ''{0}'' in {1}
 575 
 576 compiler.err.intf.expected.here=\
 577     interface expected here
 578 
 579 compiler.err.intf.meth.cant.have.body=\
 580     interface abstract methods cannot have body
 581 
 582 compiler.err.invalid.annotation.member.type=\
 583     invalid type for annotation member
 584 
 585 compiler.err.invalid.binary.number=\
 586     binary numbers must contain at least one binary digit
 587 
 588 compiler.err.invalid.hex.number=\
 589     hexadecimal numbers must contain at least one hexadecimal digit
 590 
 591 compiler.err.invalid.meth.decl.ret.type.req=\
 592     invalid method declaration; return type required
 593 
 594 compiler.err.varargs.and.old.array.syntax=\
 595     legacy array notation not allowed on variable-arity parameter
 596 
 597 compiler.err.varargs.and.receiver =\
 598     varargs notation not allowed on receiver parameter
 599 
 600 compiler.err.array.and.receiver =\
 601     legacy array notation not allowed on receiver parameter
 602 
 603 compiler.err.variable.not.allowed=\
 604     variable declaration not allowed here
 605 
 606 # 0: name
 607 compiler.err.label.already.in.use=\
 608     label {0} already in use
 609 
 610 # 0: symbol
 611 compiler.err.local.var.accessed.from.icls.needs.final=\
 612     local variable {0} is accessed from within inner class; needs to be declared final
 613 
 614 compiler.err.local.enum=\
 615     enum types must not be local
 616 
 617 compiler.err.cannot.create.array.with.type.arguments=\
 618     cannot create array with type arguments
 619 
 620 compiler.err.cannot.create.array.with.diamond=\
 621     cannot create array with ''<>''
 622 
 623 #
 624 # limits.  We don't give the limits in the diagnostic because we expect
 625 # them to change, yet we want to use the same diagnostic.  These are all
 626 # detected during code generation.
 627 #
 628 compiler.err.limit.code=\
 629     code too large
 630 
 631 compiler.err.limit.code.too.large.for.try.stmt=\
 632     code too large for try statement
 633 
 634 compiler.err.limit.dimensions=\
 635     array type has too many dimensions
 636 
 637 compiler.err.limit.locals=\
 638     too many local variables
 639 
 640 compiler.err.limit.parameters=\
 641     too many parameters
 642 
 643 compiler.err.limit.pool=\
 644     too many constants
 645 
 646 compiler.err.limit.pool.in.class=\
 647     too many constants in class {0}
 648 
 649 compiler.err.limit.stack=\
 650     code requires too much stack
 651 
 652 compiler.err.limit.string=\
 653     constant string too long
 654 
 655 compiler.err.limit.string.overflow=\
 656     UTF8 representation for string \"{0}...\" is too long for the constant pool
 657 
 658 compiler.err.malformed.fp.lit=\
 659     malformed floating point literal
 660 
 661 compiler.err.method.does.not.override.superclass=\
 662     method does not override or implement a method from a supertype
 663 
 664 compiler.err.missing.meth.body.or.decl.abstract=\
 665     missing method body, or declare abstract
 666 
 667 compiler.err.missing.ret.stmt=\
 668     missing return statement
 669 
 670 # 0: unused
 671 compiler.misc.missing.ret.val=\
 672     missing return value
 673 
 674 compiler.misc.unexpected.ret.val=\
 675     unexpected return value
 676 
 677 # 0: set of modifier
 678 compiler.err.mod.not.allowed.here=\
 679     modifier {0} not allowed here
 680 
 681 compiler.err.intf.not.allowed.here=\
 682     interface not allowed here
 683 
 684 compiler.err.enums.must.be.static=\
 685     enum declarations allowed only in static contexts
 686 
 687 # 0: symbol, 1: symbol
 688 compiler.err.name.clash.same.erasure=\
 689     name clash: {0} and {1} have the same erasure
 690 
 691 # 0: symbol, 1: symbol, 2: symbol, 3: symbol, 4: unused, 5: unused
 692 compiler.err.name.clash.same.erasure.no.override=\
 693     name clash: {0} in {1} and {2} in {3} have the same erasure, yet neither overrides the other
 694 
 695 # 0: symbol, 1: symbol, 2: symbol, 3: symbol, 4: symbol, 5: symbol
 696 compiler.err.name.clash.same.erasure.no.override.1=\
 697     name clash: {0} in {1} overrides a method whose erasure is the same as another method, yet neither overrides the other\n\
 698     first method:  {2} in {3}\n\
 699     second method: {4} in {5}
 700 
 701 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
 702 compiler.err.name.clash.same.erasure.no.hide=\
 703     name clash: {0} in {1} and {2} in {3} have the same erasure, yet neither hides the other
 704 
 705 compiler.err.name.reserved.for.internal.use=\
 706     {0} is reserved for internal use
 707 
 708 compiler.err.native.meth.cant.have.body=\
 709     native methods cannot have a body
 710 
 711 # 0: type, 1: type
 712 compiler.err.neither.conditional.subtype=\
 713     incompatible types for ?: neither is a subtype of the other\n\
 714     second operand: {0}\n\
 715     third operand : {1}
 716 
 717 # 0: message segment
 718 compiler.misc.incompatible.type.in.conditional=\
 719     bad type in conditional expression\n\
 720     {0}
 721 
 722 compiler.misc.conditional.target.cant.be.void=\
 723     target-type for conditional expression cannot be void
 724 
 725 # 0: type
 726 compiler.misc.incompatible.ret.type.in.lambda=\
 727     bad return type in lambda expression\n\
 728     {0}
 729 
 730 # 0: type
 731 compiler.misc.incompatible.ret.type.in.mref=\
 732     bad return type in method reference\n\
 733     {0}
 734 
 735 # 0: list of type
 736 compiler.err.incompatible.thrown.types.in.mref=\
 737     incompatible thrown types {0} in method reference
 738 
 739 compiler.misc.incompatible.arg.types.in.lambda=\
 740     incompatible parameter types in lambda expression
 741 
 742 compiler.misc.incompatible.arg.types.in.mref=\
 743     incompatible parameter types in method reference
 744 
 745 # 0: list of type, 1: message segment
 746 compiler.misc.bad.arg.types.in.lambda=\
 747     cannot type-check lambda expression with inferred parameter types\n\
 748     inferred types: {0}
 749 
 750 compiler.err.new.not.allowed.in.annotation=\
 751     ''new'' not allowed in an annotation
 752 
 753 compiler.err.no.annotation.member=\
 754     no annotation member {0} in {1}
 755 
 756 compiler.err.no.encl.instance.of.type.in.scope=\
 757     no enclosing instance of type {0} is in scope
 758 
 759 compiler.err.no.intf.expected.here=\
 760     no interface expected here
 761 
 762 compiler.err.no.match.entry=\
 763     {0} has no match in entry in {1}; required {2}
 764 
 765 compiler.err.not.annotation.type=\
 766     {0} is not an annotation type
 767 
 768 # 0: symbol, 1: symbol
 769 compiler.err.not.def.access.class.intf.cant.access=\
 770     {0} in {1} is defined in an inaccessible class or interface
 771 
 772 # 0: symbol, 1: symbol
 773 compiler.misc.not.def.access.class.intf.cant.access=\
 774     {0} in {1} is defined in an inaccessible class or interface
 775 
 776 # 0: symbol, 1: list of type, 2: type
 777 compiler.misc.cant.access.inner.cls.constr=\
 778     cannot access constructor {0}({1})\n\
 779     an enclosing instance of type {2} is not in scope
 780 
 781 # 0: symbol, 1: symbol
 782 compiler.err.not.def.public.cant.access=\
 783     {0} is not public in {1}; cannot be accessed from outside package
 784 
 785 # 0: symbol, 1: symbol
 786 compiler.misc.not.def.public.cant.access=\
 787     {0} is not public in {1}; cannot be accessed from outside package
 788 
 789 # 0: name
 790 compiler.err.not.loop.label=\
 791     not a loop label: {0}
 792 
 793 compiler.err.not.stmt=\
 794     not a statement
 795 
 796 # 0: symbol
 797 compiler.err.not.encl.class=\
 798     not an enclosing class: {0}
 799 
 800 # 0: name, 1: type, 2: unused
 801 compiler.err.operator.cant.be.applied=\
 802     bad operand type {1} for unary operator ''{0}''
 803 
 804 # 0: name, 1: type, 2: type
 805 compiler.err.operator.cant.be.applied.1=\
 806     bad operand types for binary operator ''{0}''\n\
 807     first type:  {1}\n\
 808     second type: {2}
 809 
 810 compiler.err.pkg.annotations.sb.in.package-info.java=\
 811     package annotations should be in file package-info.java
 812 
 813 # 0: symbol
 814 compiler.err.pkg.clashes.with.class.of.same.name=\
 815     package {0} clashes with class of same name
 816 
 817 compiler.err.warnings.and.werror=\
 818     warnings found and -Werror specified
 819 
 820 # Errors related to annotation processing
 821 
 822 # 0: symbol, 1: string, 2: stack-trace
 823 compiler.err.proc.cant.access=\
 824     cannot access {0}\n\
 825     {1}\n\
 826     Consult the following stack trace for details.\n\
 827     {2}
 828 
 829 # 0: symbol, 1: string
 830 compiler.err.proc.cant.access.1=\
 831     cannot access {0}\n\
 832     {1}
 833 
 834 # 0: string
 835 compiler.err.proc.cant.find.class=\
 836     Could not find class file for ''{0}''.
 837 
 838 # Print a client-generated error message; assumed to be localized, no translation required
 839 # 0: string
 840 compiler.err.proc.messager=\
 841     {0}
 842 
 843 # 0: list of string
 844 compiler.err.proc.no.explicit.annotation.processing.requested=\
 845     Class names, ''{0}'', are only accepted if annotation processing is explicitly requested
 846 
 847 compiler.err.proc.no.service=\
 848     A ServiceLoader was not usable and is required for annotation processing.
 849 
 850 compiler.err.proc.processor.bad.option.name=\
 851     Bad option name ''{0}'' provided by processor ''{1}''
 852 
 853 # 0: string
 854 compiler.err.proc.processor.cant.instantiate=\
 855     Could not instantiate an instance of processor ''{0}''
 856 
 857 # 0: string
 858 compiler.err.proc.processor.not.found=\
 859     Annotation processor ''{0}'' not found
 860 
 861 # 0: string
 862 compiler.err.proc.processor.wrong.type=\
 863     Annotation processor ''{0}'' does not implement javax.annotation.processing.Processor
 864 
 865 compiler.err.proc.service.problem=\
 866     Error creating a service loader to load Processors.
 867 
 868 compiler.err.proc.bad.config.file=\
 869     Bad service configuration file, or exception thrown while constructing Processor object: {0}
 870 
 871 compiler.err.proc.cant.create.loader=\
 872     Could not create class loader for annotation processors: {0}
 873 
 874 # 0: unused
 875 compiler.err.qualified.new.of.static.class=\
 876     qualified new of static class
 877 
 878 compiler.err.recursive.ctor.invocation=\
 879     recursive constructor invocation
 880 
 881 # 0: name, 1: symbol kind, 2: symbol, 3: symbol, 4: symbol kind, 5: symbol, 6: symbol
 882 compiler.err.ref.ambiguous=\
 883     reference to {0} is ambiguous\n\
 884     both {1} {2} in {3} and {4} {5} in {6} match
 885 
 886 # 0: name, 1: symbol kind, 2: symbol, 3: symbol, 4: symbol kind, 5: symbol, 6: symbol
 887 compiler.misc.ref.ambiguous=\
 888     reference to {0} is ambiguous\n\
 889     both {1} {2} in {3} and {4} {5} in {6} match
 890 
 891 compiler.err.repeated.annotation.target=\
 892     repeated annotation target
 893 
 894 compiler.err.repeated.interface=\
 895     repeated interface
 896 
 897 compiler.err.repeated.modifier=\
 898     repeated modifier
 899 
 900 # 0: symbol, 1: set of modifier, 2: symbol
 901 compiler.err.report.access=\
 902     {0} has {1} access in {2}
 903 
 904 # 0: symbol, 1: set of modifier, 2: symbol
 905 compiler.misc.report.access=\
 906     {0} has {1} access in {2}
 907 
 908 compiler.err.ret.outside.meth=\
 909     return outside method
 910 
 911 compiler.err.signature.doesnt.match.supertype=\
 912     signature does not match {0}; incompatible supertype
 913 
 914 compiler.err.signature.doesnt.match.intf=\
 915     signature does not match {0}; incompatible interfaces
 916 
 917 # 0: number, 1: number
 918 compiler.err.method.invoked.with.incorrect.number.arguments=\
 919     method invoked with incorrect number of arguments; expected {0}, found {1}
 920 
 921 # 0: symbol, 1: symbol, 2: symbol
 922 compiler.err.does.not.override.abstract=\
 923     {0} is not abstract and does not override abstract method {1} in {2}
 924 
 925 compiler.err.source.cant.overwrite.input.file=\
 926     error writing source; cannot overwrite input file {0}
 927 
 928 compiler.err.stack.sim.error=\
 929     Internal error: stack sim error on {0}
 930 
 931 compiler.err.static.imp.only.classes.and.interfaces=\
 932     static import only from classes and interfaces
 933 
 934 compiler.err.string.const.req=\
 935     constant string expression required
 936 
 937 # 0: symbol, 1: symbol
 938 compiler.err.synthetic.name.conflict=\
 939     the symbol {0} conflicts with a compiler-synthesized symbol in {1}
 940 
 941 # 0: symbol, 1: symbol
 942 compiler.warn.synthetic.name.conflict=\
 943     the symbol {0} conflicts with a compiler-synthesized symbol in {1}
 944 
 945 compiler.err.throws.not.allowed.in.intf.annotation=\
 946     throws clause not allowed in @interface members
 947 
 948 compiler.err.try.without.catch.or.finally=\
 949     ''try'' without ''catch'' or ''finally''
 950 
 951 compiler.err.try.without.catch.finally.or.resource.decls=\
 952     ''try'' without ''catch'', ''finally'' or resource declarations
 953 
 954 # 0: symbol
 955 compiler.err.type.doesnt.take.params=\
 956     type {0} does not take parameters
 957 
 958 compiler.err.type.var.cant.be.deref=\
 959     cannot select from a type variable
 960 
 961 compiler.err.type.var.may.not.be.followed.by.other.bounds=\
 962     a type variable may not be followed by other bounds
 963 
 964 compiler.err.type.var.more.than.once=\
 965     type variable {0} occurs more than once in result type of {1}; cannot be left uninstantiated
 966 
 967 compiler.err.type.var.more.than.once.in.result=\
 968     type variable {0} occurs more than once in type of {1}; cannot be left uninstantiated
 969 
 970 # 0: type, 1: type, 2: string
 971 compiler.err.types.incompatible.diff.ret=\
 972     types {0} and {1} are incompatible; both define {2}, but with unrelated return types
 973 
 974 # 0: kind, 1: type, 2: name, 3: list of type, 4: symbol, 5: symbol
 975 compiler.err.types.incompatible.unrelated.defaults=\
 976     {0} {1} inherits unrelated defaults for {2}({3}) from types {4} and {5}
 977 
 978 # 0: kind, 1: type, 2: name, 3: list of type, 4: symbol, 5: symbol
 979 compiler.err.types.incompatible.abstract.default=\
 980     {0} {1} inherits abstract and default for {2}({3}) from types {4} and {5}
 981 
 982 # 0: name, 1: kind, 2: symbol
 983 compiler.err.default.overrides.object.member=\
 984     default method {0} in {1} {2} overrides a member of java.lang.Object
 985 
 986 # 0: type
 987 compiler.err.illegal.static.intf.meth.call=\
 988     illegal static interface method call\n\
 989     the receiver expression should be replaced with the type qualifier ''{0}''
 990 
 991 # 0: type, 1: message segment
 992 compiler.err.illegal.default.super.call=\
 993     bad type qualifier {0} in default super call\n\
 994     {1}
 995 
 996 # 0: symbol, 1: type
 997 compiler.misc.overridden.default=\
 998     method {0} is overridden in {1}
 999 
1000 # 0: symbol, 1: type or symbol
1001 compiler.misc.redundant.supertype=\
1002     redundant interface {0} is extended by {1}
1003 
1004 compiler.err.unclosed.char.lit=\
1005     unclosed character literal
1006 
1007 compiler.err.unclosed.comment=\
1008     unclosed comment
1009 
1010 compiler.err.unclosed.str.lit=\
1011     unclosed string literal
1012 
1013 # 0: name
1014 compiler.err.unsupported.encoding=\
1015     unsupported encoding: {0}
1016 
1017 compiler.err.io.exception=\
1018     error reading source file: {0}
1019 
1020 # 0: name
1021 compiler.err.undef.label=\
1022     undefined label: {0}
1023 
1024 # 0: message segment, 1: unused
1025 compiler.err.cant.apply.diamond=\
1026     cannot infer type arguments for {0}
1027 
1028 # 0: message segment or type, 1: message segment
1029 compiler.err.cant.apply.diamond.1=\
1030     cannot infer type arguments for {0}\n\
1031     reason: {1}
1032 
1033 # 0: message segment or type, 1: message segment
1034 compiler.misc.cant.apply.diamond.1=\
1035     cannot infer type arguments for {0}\n\
1036     reason: {1}
1037 
1038 compiler.err.unreachable.stmt=\
1039     unreachable statement
1040 
1041 compiler.err.initializer.must.be.able.to.complete.normally=\
1042     initializer must be able to complete normally
1043 
1044 # 0: type
1045 compiler.err.unreported.exception.need.to.catch.or.throw=\
1046     unreported exception {0}; must be caught or declared to be thrown
1047 
1048 # 0: type
1049 compiler.err.unreported.exception.default.constructor=\
1050     unreported exception {0} in default constructor
1051 
1052 # 0: type, 1: name
1053 compiler.err.unreported.exception.implicit.close=\
1054     unreported exception {0}; must be caught or declared to be thrown\n\
1055     exception thrown from implicit call to close() on resource variable ''{1}''
1056 
1057 compiler.err.unsupported.cross.fp.lit=\
1058     hexadecimal floating-point literals are not supported on this VM
1059 
1060 compiler.err.void.not.allowed.here=\
1061     ''void'' type not allowed here
1062 
1063 # 0: string
1064 compiler.err.wrong.number.type.args=\
1065     wrong number of type arguments; required {0}
1066 
1067 # 0: symbol
1068 compiler.err.var.might.already.be.assigned=\
1069     variable {0} might already have been assigned
1070 
1071 # 0: symbol
1072 compiler.err.var.might.not.have.been.initialized=\
1073     variable {0} might not have been initialized
1074 
1075 # 0: symbol
1076 compiler.err.var.not.initialized.in.default.constructor=\
1077     variable {0} not initialized in the default constructor
1078 
1079 # 0: symbol
1080 compiler.err.var.might.be.assigned.in.loop=\
1081     variable {0} might be assigned in loop
1082 
1083 # 0: symbol, 1: message segment
1084 compiler.err.varargs.invalid.trustme.anno=\
1085     Invalid {0} annotation. {1}
1086 
1087 # 0: type
1088 compiler.misc.varargs.trustme.on.reifiable.varargs=\
1089     Varargs element type {0} is reifiable.
1090 
1091 # 0: symbol
1092 compiler.misc.varargs.trustme.on.non.varargs.meth=\
1093     Method {0} is not a varargs method.
1094 
1095 # 0: symbol
1096 compiler.misc.varargs.trustme.on.virtual.varargs=\
1097     Instance method {0} is not final.
1098 
1099 # 0: type, 1: symbol kind, 2: symbol
1100 compiler.misc.inaccessible.varargs.type=\
1101     formal varargs element type {0} is not accessible from {1} {2}
1102 
1103 # In the following string, {1} will always be the detail message from
1104 # java.io.IOException.
1105 # 0: symbol, 1: string
1106 compiler.err.class.cant.write=\
1107     error while writing {0}: {1}
1108 
1109 # In the following string, {0} is the name of the class in the Java source.
1110 # It really should be used two times..
1111 # 0: name
1112 compiler.err.class.public.should.be.in.file=\
1113     class {0} is public, should be declared in a file named {0}.java
1114 
1115 ## All errors which do not refer to a particular line in the source code are
1116 ## preceded by this string.
1117 compiler.err.error=\
1118     error:\u0020
1119 
1120 # The following error messages do not refer to a line in the source code.
1121 compiler.err.cant.read.file=\
1122     cannot read: {0}
1123 
1124 #####
1125 
1126 # Fatal Errors
1127 
1128 compiler.misc.fatal.err.no.java.lang=\
1129     Fatal Error: Unable to find package java.lang in classpath or bootclasspath
1130 
1131 compiler.misc.fatal.err.cant.locate.meth=\
1132     Fatal Error: Unable to find method {0}
1133 
1134 compiler.misc.fatal.err.cant.locate.field=\
1135     Fatal Error: Unable to find field {0}
1136 
1137 compiler.misc.fatal.err.cant.locate.ctor=\
1138     Fatal Error: Unable to find constructor for {0}
1139 
1140 compiler.misc.fatal.err.cant.close=\
1141     Fatal Error: Cannot close compiler resources
1142 
1143 #####
1144 
1145 ##
1146 ## miscellaneous strings
1147 ##
1148 
1149 compiler.misc.source.unavailable=\
1150     (source unavailable)
1151 
1152 compiler.misc.base.membership=\
1153     all your base class are belong to us
1154 
1155 # 0: string, 1: string, 2: boolean
1156 compiler.misc.x.print.processor.info=\
1157     Processor {0} matches {1} and returns {2}.
1158 
1159 # 0: number, 1: string, 2: set of symbol, 3: boolean
1160 compiler.misc.x.print.rounds=\
1161     Round {0}:\n\tinput files: {1}\n\tannotations: {2}\n\tlast round: {3}
1162 
1163 #####
1164 
1165 ## The following string will appear before all messages keyed as:
1166 ## "compiler.note".
1167 
1168 compiler.note.compressed.diags=\
1169     Some messages have been simplified; recompile with -Xdiags:verbose to get full output
1170 
1171 compiler.note.potential.lambda.found=\
1172     This anonymous inner class creation can be turned into a lambda expression.
1173 
1174 # 0: boolean, 1: symbol
1175 compiler.note.lambda.stat=\
1176     Translating lambda expression\n\
1177     alternate metafactory = {0}\n\
1178     synthetic method = {1}
1179 
1180 # 0: boolean, 1: unused
1181 compiler.note.mref.stat=\
1182     Translating method reference\n\
1183     alternate metafactory = {0}\n\
1184 
1185 # 0: boolean, 1: symbol
1186 compiler.note.mref.stat.1=\
1187     Translating method reference\n\
1188     alternate metafactory = {0}\n\
1189     bridge method = {1}
1190 
1191 compiler.note.note=\
1192     Note:\u0020
1193 
1194 # 0: file name
1195 compiler.note.deprecated.filename=\
1196     {0} uses or overrides a deprecated API.
1197 
1198 compiler.note.deprecated.plural=\
1199     Some input files use or override a deprecated API.
1200 
1201 # The following string may appear after one of the above deprecation
1202 # messages.
1203 compiler.note.deprecated.recompile=\
1204     Recompile with -Xlint:deprecation for details.
1205 
1206 # 0: file name
1207 compiler.note.deprecated.filename.additional=\
1208     {0} has additional uses or overrides of a deprecated API.
1209 
1210 compiler.note.deprecated.plural.additional=\
1211     Some input files additionally use or override a deprecated API.
1212 
1213 # 0: file name
1214 compiler.note.unchecked.filename=\
1215     {0} uses unchecked or unsafe operations.
1216 
1217 compiler.note.unchecked.plural=\
1218     Some input files use unchecked or unsafe operations.
1219 
1220 # The following string may appear after one of the above deprecation
1221 # messages.
1222 compiler.note.unchecked.recompile=\
1223     Recompile with -Xlint:unchecked for details.
1224 
1225 # 0: file name
1226 compiler.note.unchecked.filename.additional=\
1227     {0} has additional unchecked or unsafe operations.
1228 
1229 compiler.note.unchecked.plural.additional=\
1230     Some input files additionally use unchecked or unsafe operations.
1231 
1232 # 0: file name
1233 compiler.note.sunapi.filename=\
1234     {0} uses internal proprietary API that may be removed in a future release.
1235 
1236 compiler.note.sunapi.plural=\
1237     Some input files use internal proprietary API that may be removed in a future release.
1238 
1239 # The following string may appear after one of the above sunapi messages.
1240 compiler.note.sunapi.recompile=\
1241     Recompile with -Xlint:sunapi for details.
1242 
1243 # 0: file name
1244 compiler.note.sunapi.filename.additional=\
1245     {0} uses additional internal proprietary API that may be removed in a future release.
1246 
1247 compiler.note.sunapi.plural.additional=\
1248     Some input files additionally use internal proprietary API that may be removed in a future release.
1249 
1250 # Notes related to annotation processing
1251 
1252 # Print a client-generated note; assumed to be localized, no translation required
1253 # 0: string
1254 compiler.note.proc.messager=\
1255     {0}
1256 
1257 #####
1258 
1259 # 0: number
1260 compiler.misc.count.error=\
1261     {0} error
1262 
1263 # 0: number
1264 compiler.misc.count.error.plural=\
1265     {0} errors
1266 
1267 # 0: number
1268 compiler.misc.count.warn=\
1269     {0} warning
1270 
1271 # 0: number
1272 compiler.misc.count.warn.plural=\
1273     {0} warnings
1274 
1275 compiler.misc.version.not.available=\
1276     (version info not available)
1277 
1278 ## extra output when using -verbose (JavaCompiler)
1279 
1280 # 0: symbol
1281 compiler.misc.verbose.checking.attribution=\
1282     [checking {0}]
1283 
1284 # 0: string
1285 compiler.misc.verbose.parsing.done=\
1286     [parsing completed {0}ms]
1287 
1288 # 0: file name
1289 compiler.misc.verbose.parsing.started=\
1290     [parsing started {0}]
1291 
1292 # 0: string
1293 compiler.misc.verbose.total=\
1294     [total {0}ms]
1295 
1296 # 0: file name
1297 compiler.misc.verbose.wrote.file=\
1298     [wrote {0}]
1299 
1300 ## extra output when using -verbose (Retro)
1301 compiler.misc.verbose.retro=\
1302     [retrofitting {0}]
1303 
1304 compiler.misc.verbose.retro.with=\
1305     \tretrofitting {0} with {1}
1306 
1307 compiler.misc.verbose.retro.with.list=\
1308     \tretrofitting {0} with type parameters {1}, supertype {2}, interfaces {3}
1309 
1310 ## extra output when using -verbose (code/ClassReader)
1311 # 0: string
1312 compiler.misc.verbose.loading=\
1313     [loading {0}]
1314 
1315 # 0: string
1316 compiler.misc.verbose.sourcepath=\
1317     [search path for source files: {0}]
1318 
1319 # 0: string
1320 compiler.misc.verbose.classpath=\
1321     [search path for class files: {0}]
1322 
1323 ## extra output when using -checkclassfile (code/ClassReader)
1324 compiler.misc.ccf.found.later.version=\
1325     class file has later version than expected: {0}
1326 
1327 compiler.misc.ccf.unrecognized.attribute=\
1328     unrecognized attribute: {0}
1329 
1330 ## extra output when using -prompt (util/Log)
1331 compiler.misc.resume.abort=\
1332     R)esume, A)bort>
1333 
1334 #####
1335 
1336 ##
1337 ## warnings
1338 ##
1339 
1340 ## All warning messages are preceded by the following string.
1341 compiler.warn.warning=\
1342     warning:\u0020
1343 
1344 ## Warning messages may also include the following prefix to identify a
1345 ## lint option
1346 # 0: option name
1347 compiler.warn.lintOption=\
1348     [{0}]\u0020
1349 
1350 # 0: symbol
1351 compiler.warn.constant.SVUID=\
1352     serialVersionUID must be constant in class {0}
1353 
1354 # 0: file name
1355 compiler.warn.dir.path.element.not.found=\
1356     bad path element "{0}": no such directory
1357 
1358 compiler.warn.finally.cannot.complete=\
1359     finally clause cannot complete normally
1360 
1361 # 0: symbol, 1: symbol
1362 compiler.warn.has.been.deprecated=\
1363     {0} in {1} has been deprecated
1364 
1365 # 0: symbol
1366 compiler.warn.sun.proprietary=\
1367     {0} is internal proprietary API and may be removed in a future release
1368 
1369 compiler.warn.illegal.char.for.encoding=\
1370     unmappable character for encoding {0}
1371 
1372 # 0: symbol
1373 compiler.warn.improper.SVUID=\
1374     serialVersionUID must be declared static final in class {0}
1375 
1376 # 0: type, 1: type
1377 compiler.warn.inexact.non-varargs.call=\
1378     non-varargs call of varargs method with inexact argument type for last parameter;\n\
1379     cast to {0} for a varargs call\n\
1380     cast to {1} for a non-varargs call and to suppress this warning
1381 
1382 # 0: list of type
1383 compiler.warn.unreachable.catch=\
1384     unreachable catch clause\n\
1385     thrown type {0} has already been caught
1386 
1387 # 0: list of type
1388 compiler.warn.unreachable.catch.1=\
1389     unreachable catch clause\n\
1390     thrown types {0} have already been caught
1391 
1392 # 0: symbol
1393 compiler.warn.long.SVUID=\
1394     serialVersionUID must be of type long in class {0}
1395 
1396 # 0: symbol
1397 compiler.warn.missing.SVUID=\
1398     serializable class {0} has no definition of serialVersionUID
1399 
1400 # 0: message segment
1401 compiler.warn.override.varargs.missing=\
1402     {0}; overridden method has no ''...''
1403 
1404 # 0: message segment
1405 compiler.warn.override.varargs.extra=\
1406     {0}; overriding method is missing ''...''
1407 
1408 compiler.warn.override.bridge=\
1409     {0}; overridden method is a bridge method
1410 
1411 # 0: symbol
1412 compiler.warn.pkg-info.already.seen=\
1413     a package-info.java file has already been seen for package {0}
1414 
1415 # 0: file name
1416 compiler.warn.path.element.not.found=\
1417     bad path element "{0}": no such file or directory
1418 
1419 compiler.warn.possible.fall-through.into.case=\
1420     possible fall-through into case
1421 
1422 # 0: type
1423 compiler.warn.redundant.cast=\
1424     redundant cast to {0}
1425 
1426 # 0: number
1427 compiler.warn.position.overflow=\
1428     Position encoding overflows at line {0}
1429 
1430 # 0: file name, 1: number, 2: number
1431 compiler.warn.big.major.version=\
1432     {0}: major version {1} is newer than {2}, the highest major version supported by this compiler.\n\
1433     It is recommended that the compiler be upgraded.
1434 
1435 # 0: symbol kind, 1: symbol
1436 compiler.warn.static.not.qualified.by.type=\
1437     static {0} should be qualified by type name, {1}, instead of by an expression
1438 
1439 # 0: string
1440 compiler.warn.source.no.bootclasspath=\
1441     bootstrap class path not set in conjunction with -source {0}
1442 
1443 # 0: string
1444 compiler.warn.option.obsolete.source=\
1445     source value {0} is obsolete and will be removed in a future release
1446 
1447 # 0: string
1448 compiler.warn.option.obsolete.target=\
1449     target value {0} is obsolete and will be removed in a future release
1450 
1451 compiler.warn.option.obsolete.suppression=\
1452     To suppress warnings about obsolete options, use -Xlint:-options.
1453 
1454 # 0: name, 1: number, 2: number, 3: number, 4: number
1455 compiler.warn.future.attr=\
1456     {0} attribute introduced in version {1}.{2} class files is ignored in version {3}.{4} class files
1457 
1458 # Warnings related to annotation processing
1459 # 0: name
1460 compiler.warn.proc.package.does.not.exist=\
1461     package {0} does not exist
1462 
1463 # 0: name
1464 compiler.warn.proc.file.reopening=\
1465     Attempt to create a file for ''{0}'' multiple times
1466 
1467 # 0: name
1468 compiler.warn.proc.type.already.exists=\
1469     A file for type ''{0}'' already exists on the sourcepath or classpath
1470 
1471 # 0: name
1472 compiler.warn.proc.type.recreate=\
1473     Attempt to create a file for type ''{0}'' multiple times
1474 
1475 # 0: string
1476 compiler.warn.proc.illegal.file.name=\
1477     Cannot create file for illegal name ''{0}''.
1478 
1479 # 0: string, 1: string
1480 compiler.warn.proc.suspicious.class.name=\
1481     Creating file for a type whose name ends in {1}: ''{0}''
1482 
1483 # 0: name
1484 compiler.warn.proc.file.create.last.round=\
1485     File for type ''{0}'' created in the last round will not be subject to annotation processing.
1486 
1487 # 0: string, 1: string
1488 compiler.warn.proc.malformed.supported.string=\
1489     Malformed string ''{0}'' for a supported annotation type returned by processor ''{1}''
1490 
1491 # 0: set of string
1492 compiler.warn.proc.annotations.without.processors=\
1493     No processor claimed any of these annotations: {0}
1494 
1495 # 0: source version, 1: string, 2: string
1496 compiler.warn.proc.processor.incompatible.source.version=\
1497     Supported source version ''{0}'' from annotation processor ''{1}'' less than -source ''{2}''
1498 
1499 compiler.warn.proc.proc-only.requested.no.procs=\
1500     Annotation processing without compilation requested but no processors were found.
1501 
1502 compiler.warn.proc.use.implicit=\
1503     Implicitly compiled files were not subject to annotation processing.\n\
1504     Use -implicit to specify a policy for implicit compilation.
1505 
1506 compiler.warn.proc.use.proc.or.implicit=\
1507     Implicitly compiled files were not subject to annotation processing.\n\
1508     Use -proc:none to disable annotation processing or -implicit to specify a policy for implicit compilation.
1509 
1510 # Print a client-generated warning; assumed to be localized, no translation required
1511 # 0: string
1512 compiler.warn.proc.messager=\
1513     {0}
1514 
1515 # 0: set of name
1516 compiler.warn.proc.unclosed.type.files=\
1517     Unclosed files for the types ''{0}''; these types will not undergo annotation processing
1518 
1519 # 0: string
1520 compiler.warn.proc.unmatched.processor.options=\
1521     The following options were not recognized by any processor: ''{0}''
1522 
1523 compiler.warn.try.explicit.close.call=\
1524     explicit call to close() on an auto-closeable resource
1525 
1526 # 0: symbol
1527 compiler.warn.try.resource.not.referenced=\
1528     auto-closeable resource {0} is never referenced in body of corresponding try statement
1529 
1530 # 0: type
1531 compiler.warn.try.resource.throws.interrupted.exc=\
1532     auto-closeable resource {0} has a member method close() that could throw InterruptedException
1533 
1534 compiler.warn.unchecked.assign=\
1535     unchecked assignment: {0} to {1}
1536 
1537 # 0: symbol, 1: type
1538 compiler.warn.unchecked.assign.to.var=\
1539     unchecked assignment to variable {0} as member of raw type {1}
1540 
1541 # 0: symbol, 1: type
1542 compiler.warn.unchecked.call.mbr.of.raw.type=\
1543     unchecked call to {0} as a member of the raw type {1}
1544 
1545 compiler.warn.unchecked.cast.to.type=\
1546     unchecked cast to type {0}
1547 
1548 # 0: symbol kind, 1: name, 2: list of type, 3: list of type, 4: symbol kind, 5: symbol
1549 compiler.warn.unchecked.meth.invocation.applied=\
1550     unchecked method invocation: {0} {1} in {4} {5} is applied to given types\n\
1551     required: {2}\n\
1552     found: {3}
1553 
1554 # 0: type
1555 compiler.warn.unchecked.generic.array.creation=\
1556     unchecked generic array creation for varargs parameter of type {0}
1557 
1558 # 0: type
1559 compiler.warn.unchecked.varargs.non.reifiable.type=\
1560     Possible heap pollution from parameterized vararg type {0}
1561 
1562 # 0: symbol
1563 compiler.warn.varargs.unsafe.use.varargs.param=\
1564     Varargs method could cause heap pollution from non-reifiable varargs parameter {0}
1565 
1566 compiler.warn.missing.deprecated.annotation=\
1567     deprecated item is not annotated with @Deprecated
1568 
1569 compiler.warn.invalid.archive.file=\
1570     Unexpected file on path: {0}
1571 
1572 compiler.warn.unexpected.archive.file=\
1573     Unexpected extension for archive file: {0}
1574 
1575 compiler.warn.div.zero=\
1576     division by zero
1577 
1578 compiler.warn.empty.if=\
1579     empty statement after if
1580 
1581 compiler.warn.annotation.method.not.found=\
1582     Cannot find annotation method ''{1}()'' in type ''{0}''
1583 
1584 compiler.warn.annotation.method.not.found.reason=\
1585     Cannot find annotation method ''{1}()'' in type ''{0}'': {2}
1586 
1587 # 0: symbol, 1: name
1588 compiler.warn.unknown.enum.constant=\
1589     unknown enum constant {1}.{2}
1590 
1591 # 0: symbol, 1: name, 2: message segment
1592 compiler.warn.unknown.enum.constant.reason=\
1593     unknown enum constant {1}.{2}\n\
1594     reason: {3}
1595 
1596 # 0: type, 1: type
1597 compiler.warn.raw.class.use=\
1598     found raw type: {0}\n\
1599     missing type arguments for generic class {1}
1600 
1601 # 0: unused, 1: unused
1602 compiler.warn.diamond.redundant.args=\
1603     redundant type arguments in new expression (use diamond operator instead).
1604 
1605 # 0: type, 1: type
1606 compiler.warn.diamond.redundant.args.1=\
1607     redundant type arguments in new expression (use diamond operator instead).\n\
1608     explicit: {0}\n\
1609     inferred: {1}
1610 
1611 # 0: symbol, 1: message segment
1612 compiler.warn.varargs.redundant.trustme.anno=\
1613     Redundant {0} annotation. {1}
1614 
1615 #####
1616 
1617 ## The following are tokens which are non-terminals in the language. They should
1618 ## be named as JLS3 calls them when translated to the appropriate language.
1619 compiler.misc.token.identifier=\
1620     <identifier>
1621 
1622 compiler.misc.token.character=\
1623     <character>
1624 
1625 compiler.misc.token.string=\
1626     <string>
1627 
1628 compiler.misc.token.integer=\
1629     <integer>
1630 
1631 compiler.misc.token.long-integer=\
1632     <long integer>
1633 
1634 compiler.misc.token.float=\
1635     <float>
1636 
1637 compiler.misc.token.double=\
1638     <double>
1639 
1640 compiler.misc.token.bad-symbol=\
1641     <bad symbol>
1642 
1643 compiler.misc.token.end-of-input=\
1644     <end of input>
1645 
1646 ## The argument to the following string will always be one of the following:
1647 ## 1. one of the above non-terminals
1648 ## 2. a keyword (JLS1.8)
1649 ## 3. a boolean literal (JLS3.10.3)
1650 ## 4. the null literal (JLS3.10.7)
1651 ## 5. a Java separator (JLS3.11)
1652 ## 6. an operator (JLS3.12)
1653 ##
1654 ## This is the only place these tokens will be used.
1655 # 0: token
1656 compiler.err.expected=\
1657     {0} expected
1658 
1659 # 0: token, 1: token
1660 compiler.err.expected2=\
1661     {0} or {1} expected
1662 
1663 # 0: token, 1: token, 2: token
1664 compiler.err.expected3=\
1665     {0}, {1}, or {2} expected
1666 
1667 compiler.err.premature.eof=\
1668     reached end of file while parsing
1669 
1670 ## The following are related in form, but do not easily fit the above paradigm.
1671 compiler.err.dot.class.expected=\
1672     ''.class'' expected
1673 
1674 ## The argument to this string will always be either 'case' or 'default'.
1675 # 0: token
1676 compiler.err.orphaned=\
1677     orphaned {0}
1678 
1679 # 0: name
1680 compiler.misc.anonymous.class=\
1681     <anonymous {0}>
1682 
1683 # 0: name, 1: type
1684 compiler.misc.type.captureof=\
1685     capture#{0} of {1}
1686 
1687 compiler.misc.type.captureof.1=\
1688     capture#{0}
1689 
1690 compiler.misc.type.none=\
1691     <none>
1692 
1693 compiler.misc.unnamed.package=\
1694     unnamed package
1695 
1696 #####
1697 
1698 # 0: symbol, 1: message segment
1699 compiler.err.cant.access=\
1700     cannot access {0}\n\
1701     {1}
1702 
1703 compiler.misc.bad.class.file.header=\
1704     bad class file: {0}\n\
1705     {1}\n\
1706     Please remove or make sure it appears in the correct subdirectory of the classpath.
1707 
1708 # 0: file name, 1: message segment
1709 compiler.misc.bad.source.file.header=\
1710     bad source file: {0}\n\
1711     {1}\n\
1712     Please remove or make sure it appears in the correct subdirectory of the sourcepath.
1713 
1714 ## The following are all possible strings for the second argument ({1}) of the
1715 ## above strings.
1716 compiler.misc.bad.class.signature=\
1717     bad class signature: {0}
1718 
1719 #0: symbol, 1: symbol
1720 compiler.misc.bad.enclosing.class=\
1721     bad enclosing class for {0}: {1}
1722 
1723 # 0: symbol
1724 compiler.misc.bad.enclosing.method=\
1725     bad enclosing method attribute for class {0}
1726 
1727 compiler.misc.bad.runtime.invisible.param.annotations=\
1728     bad RuntimeInvisibleParameterAnnotations attribute: {0}
1729 
1730 compiler.misc.bad.const.pool.tag=\
1731     bad constant pool tag: {0}
1732 
1733 compiler.misc.bad.const.pool.tag.at=\
1734     bad constant pool tag: {0} at {1}
1735 
1736 compiler.misc.bad.signature=\
1737     bad signature: {0}
1738 
1739 compiler.misc.bad.type.annotation.value=\
1740     bad type annotation target type value: {0}
1741 
1742 compiler.misc.class.file.wrong.class=\
1743     class file contains wrong class: {0}
1744 
1745 compiler.misc.class.file.not.found=\
1746     class file for {0} not found
1747 
1748 # 0: name
1749 compiler.misc.file.doesnt.contain.class=\
1750     file does not contain class {0}
1751 
1752 compiler.misc.file.does.not.contain.package=\
1753     file does not contain package {0}
1754 
1755 compiler.misc.illegal.start.of.class.file=\
1756     illegal start of class file
1757 
1758 compiler.misc.unable.to.access.file=\
1759     unable to access file: {0}
1760 
1761 compiler.misc.unicode.str.not.supported=\
1762     unicode string in class file not supported
1763 
1764 compiler.misc.undecl.type.var=\
1765     undeclared type variable: {0}
1766 
1767 compiler.misc.wrong.version=\
1768     class file has wrong version {0}.{1}, should be {2}.{3}
1769 
1770 #####
1771 
1772 # 0: type, 1: type or symbol
1773 compiler.err.not.within.bounds=\
1774     type argument {0} is not within bounds of type-variable {1}
1775 
1776 ## The following are all possible strings for the second argument ({1}) of the
1777 ## above string.
1778 
1779 ## none yet...
1780 
1781 #####
1782 
1783 # 0: message segment
1784 compiler.err.prob.found.req=\
1785     incompatible types: {0}
1786 
1787 # 0: message segment
1788 compiler.misc.prob.found.req=\
1789     incompatible types: {0}
1790 
1791 # 0: message segment, 1: type, 2: type
1792 compiler.warn.prob.found.req=\
1793     {0}\n\
1794     required: {2}\n\
1795     found:    {1}
1796 
1797 # 0: type, 1: type
1798 compiler.misc.inconvertible.types=\
1799     {0} cannot be converted to {1}
1800 
1801 # 0: type, 1: type
1802 compiler.misc.possible.loss.of.precision=\
1803     possible lossy conversion from {0} to {1}
1804 
1805 compiler.misc.unchecked.assign=\
1806     unchecked conversion
1807 
1808 # compiler.misc.storecheck=\
1809 #     assignment might cause later store checks to fail
1810 # compiler.misc.unchecked=\
1811 #     assigned array cannot dynamically check its stores
1812 compiler.misc.unchecked.cast.to.type=\
1813     unchecked cast
1814 
1815 # compiler.err.star.expected=\
1816 #     ''*'' expected
1817 # compiler.err.no.elem.type=\
1818 #     \[\*\] cannot have a type
1819 
1820 # 0: type
1821 compiler.misc.try.not.applicable.to.type=\
1822     try-with-resources not applicable to variable type\n\
1823     ({0})
1824 
1825 #####
1826 
1827 # 0: message segment or type, 1: message segment
1828 compiler.err.type.found.req=\
1829     unexpected type\n\
1830     required: {1}\n\
1831     found:    {0}
1832 
1833 ## The following are all possible strings for the first argument ({0}) of the
1834 ## above string.
1835 compiler.misc.type.req.class=\
1836     class
1837 
1838 compiler.misc.type.req.class.array=\
1839     class or array
1840 
1841 compiler.misc.type.req.array.or.iterable=\
1842     array or java.lang.Iterable
1843 
1844 compiler.misc.type.req.ref=\
1845     reference
1846 
1847 compiler.misc.type.req.exact=\
1848     class or interface without bounds
1849 
1850 # 0: type
1851 compiler.misc.type.parameter=\
1852     type parameter {0}
1853 
1854 #####
1855 
1856 ## The following are all possible strings for the last argument of all those
1857 ## diagnostics whose key ends in ".1"
1858 
1859 # 0: type, 1: list of type
1860 compiler.misc.no.unique.maximal.instance.exists=\
1861     no unique maximal instance exists for type variable {0} with upper bounds {1}
1862 
1863 compiler.misc.no.unique.minimal.instance.exists=\
1864     no unique minimal instance exists for type variable {0} with lower bounds {1}
1865 
1866 # 0: type, 1: list of type
1867 compiler.misc.incompatible.upper.bounds=\
1868     inference variable {0} has incompatible upper bounds {1}
1869 
1870 # 0: type, 1: list of type, 2: list of type
1871 compiler.misc.incompatible.eq.upper.bounds=\
1872     inference variable {0} has incompatible bounds\n\
1873     equality constraints: {1}\n\
1874     upper bounds: {2}
1875 
1876 # 0: type, 1: list of type, 2: list of type
1877 compiler.misc.incompatible.eq.lower.bounds=\
1878     inference variable {0} has incompatible bounds\n\
1879     equality constraints: {1}\n\
1880     lower bounds: {2}
1881 
1882 # 0: list of type, 1: type, 2: type
1883 compiler.misc.infer.no.conforming.instance.exists=\
1884     no instance(s) of type variable(s) {0} exist so that {1} conforms to {2}
1885 
1886 # 0: list of type, 1: message segment
1887 compiler.misc.infer.no.conforming.assignment.exists=\
1888     cannot infer type-variable(s) {0}\n\
1889     (argument mismatch; {1})
1890 
1891 # 0: list of type
1892 compiler.misc.infer.arg.length.mismatch=\
1893     cannot infer type-variable(s) {0}\n\
1894     (actual and formal argument lists differ in length)
1895 
1896 # 0: list of type, 1: message segment
1897 compiler.misc.infer.varargs.argument.mismatch=\
1898     cannot infer type-variable(s) {0}\n\
1899     (varargs mismatch; {1})
1900 
1901 # 0: type, 1: list of type
1902 compiler.misc.inferred.do.not.conform.to.upper.bounds=\
1903     inferred type does not conform to upper bound(s)\n\
1904     inferred: {0}\n\
1905     upper bound(s): {1}
1906 
1907 # 0: type, 1: list of type
1908 compiler.misc.inferred.do.not.conform.to.lower.bounds=\
1909     inferred type does not conform to lower bound(s)\n\
1910     inferred: {0}\n\
1911     lower bound(s): {1}
1912 
1913 # 0: type, 1: list of type
1914 compiler.misc.inferred.do.not.conform.to.eq.bounds=\
1915     inferred type does not conform to equality constraint(s)\n\
1916     inferred: {0}\n\
1917     equality constraints(s): {1}
1918 
1919 # 0: list of type
1920 compiler.misc.cyclic.inference=\
1921     Cannot instantiate inference variables {0} because of an inference loop
1922 
1923 # 0: symbol
1924 compiler.misc.diamond=\
1925     {0}<>
1926 
1927 # 0: type
1928 compiler.misc.diamond.non.generic=\
1929     cannot use ''<>'' with non-generic class {0}
1930 
1931 # 0: unused
1932 compiler.misc.diamond.and.explicit.params=\
1933     cannot use ''<>'' with explicit type parameters for constructor
1934 
1935 # 0: type, 1: list of type
1936 compiler.misc.explicit.param.do.not.conform.to.bounds=\
1937     explicit type argument {0} does not conform to declared bound(s) {1}
1938 
1939 compiler.misc.arg.length.mismatch=\
1940     actual and formal argument lists differ in length
1941 
1942 # 0: message segment
1943 compiler.misc.no.conforming.assignment.exists=\
1944     argument mismatch; {0}
1945 
1946 # 0: message segment
1947 compiler.misc.varargs.argument.mismatch=\
1948     varargs mismatch; {0}
1949 
1950 #####
1951 
1952 # 0: symbol or type, 1: file name
1953 compiler.warn.auxiliary.class.accessed.from.outside.of.its.source.file=\
1954     auxiliary class {0} in {1} should not be accessed from outside its own source file
1955 
1956 ## The first argument ({0}) is a "kindname".
1957 # 0: symbol kind, 1: symbol, 2: symbol
1958 compiler.err.abstract.cant.be.accessed.directly=\
1959     abstract {0} {1} in {2} cannot be accessed directly
1960 
1961 ## The first argument ({0}) is a "kindname".
1962 # 0: symbol kind, 1: symbol
1963 compiler.err.non-static.cant.be.ref=\
1964     non-static {0} {1} cannot be referenced from a static context
1965 
1966 # 0: symbol kind, 1: symbol
1967 compiler.misc.non-static.cant.be.ref=\
1968     non-static {0} {1} cannot be referenced from a static context
1969 
1970 # 0: symbol kind, 1: symbol
1971 compiler.misc.static.method.in.unbound.lookup=\
1972     static {0} {1} found in unbound lookup
1973 
1974 ## Both arguments ({0}, {1}) are "kindname"s.  {0} is a comma-separated list
1975 ## of kindnames (the list should be identical to that provided in source.
1976 compiler.err.unexpected.type=\
1977     unexpected type\n\
1978     required: {0}\n\
1979     found:    {1}
1980 
1981 compiler.err.unexpected.lambda=\
1982    lambda expression not expected here
1983 
1984 compiler.err.unexpected.mref=\
1985    method reference not expected here
1986 
1987 ## The first argument {0} is a "kindname" (e.g. 'constructor', 'field', etc.)
1988 ## The second argument {1} is the non-resolved symbol
1989 ## The third argument {2} is a list of type parameters (non-empty if {1} is a method)
1990 ## The fourth argument {3} is a list of argument types (non-empty if {1} is a method)
1991 # 0: symbol kind, 1: name, 2: unused, 3: unused
1992 compiler.err.cant.resolve=\
1993     cannot find symbol\n\
1994     symbol: {0} {1}
1995 
1996 # 0: symbol kind, 1: name, 2: unused, 3: list of type
1997 compiler.err.cant.resolve.args=\
1998     cannot find symbol\n\
1999     symbol: {0} {1}({3})
2000 
2001 # 0: symbol kind, 1: name, 2: list of type, 3: list of type
2002 compiler.err.cant.resolve.args.params=\
2003     cannot find symbol\n\
2004     symbol: {0} <{2}>{1}({3})
2005 
2006 ## arguments from {0} to {3} have the same meaning as above
2007 ## The fifth argument {4} is a location subdiagnostic (see below)
2008 # 0: symbol kind, 1: name, 2: unused, 3: unused, 4: message segment
2009 compiler.err.cant.resolve.location=\
2010     cannot find symbol\n\
2011     symbol:   {0} {1}\n\
2012     location: {4}
2013 
2014 # 0: symbol kind, 1: name, 2: unused, 3: list of type, 4: message segment
2015 compiler.err.cant.resolve.location.args=\
2016     cannot find symbol\n\
2017     symbol:   {0} {1}({3})\n\
2018     location: {4}
2019 
2020 # 0: symbol kind, 1: name, 2: list of type, 3: list, 4: message segment
2021 compiler.err.cant.resolve.location.args.params=\
2022     cannot find symbol\n\
2023     symbol:   {0} <{2}>{1}({3})\n\
2024     location: {4}
2025 
2026 ### Following are replicated/used for method reference diagnostics
2027 
2028 # 0: symbol kind, 1: name, 2: unused, 3: list of type, 4: message segment
2029 compiler.misc.cant.resolve.location.args=\
2030     cannot find symbol\n\
2031     symbol:   {0} {1}({3})\n\
2032     location: {4}
2033 
2034 # 0: symbol kind, 1: name, 2: list of type, 3: list, 4: message segment
2035 compiler.misc.cant.resolve.location.args.params=\
2036     cannot find symbol\n\
2037     symbol:   {0} <{2}>{1}({3})\n\
2038     location: {4}
2039 
2040 ##a location subdiagnostic is composed as follows:
2041 ## The first argument {0} is the location "kindname" (e.g. 'constructor', 'field', etc.)
2042 ## The second argument {1} is the location name
2043 ## The third argument {2} is the location type (only when {1} is a variable name)
2044 
2045 # 0: symbol kind, 1: type or symbol, 2: unused
2046 compiler.misc.location=\
2047     {0} {1}
2048 
2049 # 0: symbol kind, 1: symbol, 2: type
2050 compiler.misc.location.1=\
2051     {0} {1} of type {2}
2052 
2053 ## The following are all possible string for "kindname".
2054 ## They should be called whatever the JLS calls them after it been translated
2055 ## to the appropriate language.
2056 # compiler.misc.kindname.constructor=\
2057 #     static member
2058 compiler.misc.kindname.annotation=\
2059     @interface
2060 
2061 compiler.misc.kindname.constructor=\
2062     constructor
2063 
2064 compiler.misc.kindname.enum=\
2065     enum
2066 
2067 compiler.misc.kindname.interface=\
2068     interface
2069 
2070 compiler.misc.kindname.static=\
2071     static
2072 
2073 compiler.misc.kindname.type.variable=\
2074     type variable
2075 
2076 compiler.misc.kindname.type.variable.bound=\
2077     bound of type variable
2078 
2079 compiler.misc.kindname.variable=\
2080     variable
2081 
2082 compiler.misc.kindname.value=\
2083     value
2084 
2085 compiler.misc.kindname.method=\
2086     method
2087 
2088 compiler.misc.kindname.class=\
2089     class
2090 
2091 compiler.misc.kindname.package=\
2092     package
2093 
2094 compiler.misc.kindname.static.init=\
2095     static initializer
2096 
2097 compiler.misc.kindname.instance.init=\
2098     instance initializer
2099 
2100 #####
2101 
2102 compiler.misc.no.args=\
2103     no arguments
2104 
2105 # 0: message segment
2106 compiler.err.override.static=\
2107     {0}\n\
2108     overriding method is static
2109 
2110 # 0: message segment, 1: set of modifier
2111 compiler.err.override.meth=\
2112     {0}\n\
2113     overridden method is {1}
2114 
2115 # 0: message segment, 1: type
2116 compiler.err.override.meth.doesnt.throw=\
2117     {0}\n\
2118     overridden method does not throw {1}
2119 
2120 # In the following string {1} is a space separated list of Java Keywords, as
2121 # they would have been declared in the source code
2122 # 0: message segment, 1: set of modifier
2123 compiler.err.override.weaker.access=\
2124     {0}\n\
2125     attempting to assign weaker access privileges; was {1}
2126 
2127 # 0: message segment, 1: type, 2: type
2128 compiler.err.override.incompatible.ret=\
2129     {0}\n\
2130     return type {1} is not compatible with {2}
2131 
2132 # 0: message segment, 1: type, 2: type
2133 compiler.warn.override.unchecked.ret=\
2134     {0}\n\
2135     return type requires unchecked conversion from {1} to {2}
2136 
2137 # 0: message segment, 1: type
2138 compiler.warn.override.unchecked.thrown=\
2139     {0}\n\
2140     overridden method does not throw {1}
2141 
2142 # 0: symbol
2143 compiler.warn.override.equals.but.not.hashcode=\
2144     Class {0} overrides equals, but neither it nor any superclass overrides hashCode method
2145 
2146 ## The following are all possible strings for the first argument ({0}) of the
2147 ## above strings.
2148 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
2149 compiler.misc.cant.override=\
2150     {0} in {1} cannot override {2} in {3}
2151 
2152 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
2153 compiler.misc.cant.implement=\
2154     {0} in {1} cannot implement {2} in {3}
2155 
2156 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
2157 compiler.misc.clashes.with=\
2158     {0} in {1} clashes with {2} in {3}
2159 
2160 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
2161 compiler.misc.unchecked.override=\
2162     {0} in {1} overrides {2} in {3}
2163 
2164 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
2165 compiler.misc.unchecked.implement=\
2166     {0} in {1} implements {2} in {3}
2167 
2168 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
2169 compiler.misc.unchecked.clash.with=\
2170     {0} in {1} overrides {2} in {3}
2171 
2172 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
2173 compiler.misc.varargs.override=\
2174     {0} in {1} overrides {2} in {3}
2175 
2176 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
2177 compiler.misc.varargs.implement=\
2178     {0} in {1} implements {2} in {3}
2179 
2180 # 0: symbol, 1: symbol, 2: symbol, 3: symbol
2181 compiler.misc.varargs.clash.with=\
2182     {0} in {1} overrides {2} in {3}
2183 
2184 # 0: unused
2185 compiler.misc.diamond.and.anon.class=\
2186     cannot use ''<>'' with anonymous inner classes
2187 
2188 # 0: symbol kind, 1: symbol, 2: symbol, 3: message segment
2189 compiler.misc.inapplicable.method=\
2190     {0} {1}.{2} is not applicable\n\
2191     ({3})
2192 
2193 ########################################
2194 # Diagnostics for language feature changes
2195 ########################################
2196 # 0: string
2197 compiler.err.unsupported.fp.lit=\
2198     hexadecimal floating point literals are not supported in -source {0}\n\
2199     (use -source 5 or higher to enable hexadecimal floating point literals)
2200 
2201 # 0: string
2202 compiler.err.unsupported.binary.lit=\
2203     binary literals are not supported in -source {0}\n\
2204     (use -source 7 or higher to enable binary literals)
2205 
2206 # 0: string
2207 compiler.err.unsupported.underscore.lit=\
2208     underscores in literals are not supported in -source {0}\n\
2209     (use -source 7 or higher to enable underscores in literals)
2210 
2211 # 0: string
2212 compiler.err.try.with.resources.not.supported.in.source=\
2213     try-with-resources is not supported in -source {0}\n\
2214     (use -source 7 or higher to enable try-with-resources)
2215 
2216 compiler.warn.enum.as.identifier=\
2217     as of release 5, ''enum'' is a keyword, and may not be used as an identifier\n\
2218     (use -source 5 or higher to use ''enum'' as a keyword)
2219 
2220 compiler.warn.assert.as.identifier=\
2221     as of release 1.4, ''assert'' is a keyword, and may not be used as an identifier\n\
2222     (use -source 1.4 or higher to use ''assert'' as a keyword)
2223 
2224 compiler.warn.underscore.as.identifier=\
2225     ''_'' used as an identifier\n\
2226     (use of ''_'' as an identifier might not be supported in releases after Java SE 8)
2227 
2228 compiler.err.enum.as.identifier=\
2229     as of release 5, ''enum'' is a keyword, and may not be used as an identifier\n\
2230     (use -source 1.4 or lower to use ''enum'' as an identifier)
2231 
2232 compiler.err.assert.as.identifier=\
2233     as of release 1.4, ''assert'' is a keyword, and may not be used as an identifier\n\
2234     (use -source 1.3 or lower to use ''assert'' as an identifier)
2235 
2236 # TODO 308: make a better error message
2237 compiler.err.this.as.identifier=\
2238     as of release 8, ''this'' is allowed as the parameter name for the receiver type only, which has to be the first parameter
2239 
2240 # 0: symbol
2241 compiler.err.receiver.parameter.not.applicable.constructor.toplevel.class=\
2242     receiver parameter not applicable for constructor of top-level class
2243 
2244 # TODO 308: make a better error message
2245 compiler.err.cant.annotate.static.class=\
2246     enclosing static nested class cannot be annotated
2247 
2248 # TODO 308: make a better error message
2249 # 0: unused
2250 compiler.err.cant.annotate.nested.type=\
2251     nested type cannot be annotated
2252 
2253 # 0: type, 1: type
2254 compiler.err.incorrect.receiver.name=\
2255     the receiver name does not match the enclosing class type\n\
2256     required: {0}\n\
2257     found: {1}
2258 
2259 # 0: type, 1: type
2260 compiler.err.incorrect.receiver.type=\
2261     the receiver type does not match the enclosing class type\n\
2262     required: {0}\n\
2263     found: {1}
2264 
2265 # 0: type, 1: type
2266 compiler.err.incorrect.constructor.receiver.type=\
2267     the receiver type does not match the enclosing outer class type\n\
2268     required: {0}\n\
2269     found: {1}
2270 
2271 # 0: type, 1: type
2272 compiler.err.incorrect.constructor.receiver.name=\
2273     the receiver name does not match the enclosing outer class type\n\
2274     required: {0}\n\
2275     found: {1}
2276 
2277 compiler.err.no.annotations.on.dot.class=\
2278     no annotations are allowed in the type of a class literal
2279 
2280 # 0: string
2281 compiler.err.generics.not.supported.in.source=\
2282     generics are not supported in -source {0}\n\
2283     (use -source 5 or higher to enable generics)
2284 
2285 # 0: string
2286 compiler.err.varargs.not.supported.in.source=\
2287     variable-arity methods are not supported in -source {0}\n\
2288     (use -source 5 or higher to enable variable-arity methods)
2289 
2290 # 0: string
2291 compiler.err.annotations.not.supported.in.source=\
2292     annotations are not supported in -source {0}\n\
2293     (use -source 5 or higher to enable annotations)
2294 
2295 # 0: string
2296 compiler.err.type.annotations.not.supported.in.source=\
2297     type annotations are not supported in -source {0}\n\
2298 (use -source 8 or higher to enable type annotations)
2299 
2300 # 0: string
2301 compiler.err.foreach.not.supported.in.source=\
2302     for-each loops are not supported in -source {0}\n\
2303     (use -source 5 or higher to enable for-each loops)
2304 
2305 # 0: string
2306 compiler.err.static.import.not.supported.in.source=\
2307     static import declarations are not supported in -source {0}\n\
2308     (use -source 5 or higher to enable static import declarations)
2309 
2310 # 0: string
2311 compiler.err.enums.not.supported.in.source=\
2312     enums are not supported in -source {0}\n\
2313     (use -source 5 or higher to enable enums)
2314 
2315 # 0: string
2316 compiler.err.diamond.not.supported.in.source=\
2317     diamond operator is not supported in -source {0}\n\
2318     (use -source 7 or higher to enable diamond operator)
2319 
2320 # 0: string
2321 compiler.err.multicatch.not.supported.in.source=\
2322     multi-catch statement is not supported in -source {0}\n\
2323     (use -source 7 or higher to enable multi-catch statement)
2324 
2325 # 0: string
2326 compiler.err.string.switch.not.supported.in.source=\
2327     strings in switch are not supported in -source {0}\n\
2328     (use -source 7 or higher to enable strings in switch)
2329 
2330 # 0: string
2331 compiler.err.lambda.not.supported.in.source=\
2332     lambda expressions are not supported in -source {0}\n\
2333     (use -source 8 or higher to enable lambda expressions)
2334 
2335 # 0: string
2336 compiler.err.method.references.not.supported.in.source=\
2337     method references are not supported in -source {0}\n\
2338     (use -source 8 or higher to enable method references)
2339 
2340 # 0: string
2341 compiler.err.default.methods.not.supported.in.source=\
2342     default methods are not supported in -source {0}\n\
2343     (use -source 8 or higher to enable default methods)
2344 
2345 # 0: string
2346 compiler.err.intersection.types.in.cast.not.supported.in.source=\
2347     intersection types in cast are not supported in -source {0}\n\
2348     (use -source 8 or higher to enable default methods)
2349 
2350 # 0: string
2351 compiler.err.static.intf.methods.not.supported.in.source=\
2352     static interface methods are not supported in -source {0}\n\
2353     (use -source 8 or higher to enable static interface methods)
2354 
2355 ########################################
2356 # Diagnostics for verbose resolution
2357 # used by Resolve (debug only)
2358 ########################################
2359 
2360 # 0: number, 1: symbol, 2: unused
2361 compiler.misc.applicable.method.found=\
2362     #{0} applicable method found: {1}
2363 
2364 # 0: number, 1: symbol, 2: message segment
2365 compiler.misc.applicable.method.found.1=\
2366     #{0} applicable method found: {1}\n\
2367     ({2})
2368 
2369 # 0: number, 1: symbol, 2: message segment
2370 compiler.misc.not.applicable.method.found=\
2371     #{0} not applicable method found: {1}\n\
2372     ({2})
2373 
2374 # 0: type
2375 compiler.misc.partial.inst.sig=\
2376     partially instantiated to: {0}
2377 
2378 # 0: name, 1: symbol, 2: number, 3: MethodResolutionPhase, 4: list of type or message segment, 5: list of type or message segment
2379 compiler.note.verbose.resolve.multi=\
2380     resolving method {0} in type {1} to candidate {2}\n\
2381     phase: {3}\n\
2382     with actuals: {4}\n\
2383     with type-args: {5}\n\
2384     candidates:
2385 
2386 # 0: name, 1: symbol, 2: unused, 3: MethodResolutionPhase, 4: list of type or message segment, 5: list of type or message segment
2387 compiler.note.verbose.resolve.multi.1=\
2388     erroneous resolution for method {0} in type {1}\n\
2389     phase: {3}\n\
2390     with actuals: {4}\n\
2391     with type-args: {5}\n\
2392     candidates:
2393 
2394 # 0: symbol, 1: type, 2: type
2395 compiler.note.deferred.method.inst=\
2396     Deferred instantiation of method {0}\n\
2397     instantiated signature: {1}\n\
2398     target-type: {2}
2399 
2400 ########################################
2401 # Diagnostics for where clause implementation
2402 # used by the RichDiagnosticFormatter.
2403 ########################################
2404 
2405 compiler.misc.type.null=\
2406     <null>
2407 
2408 # X#n (where n is an int id) is disambiguated tvar name
2409 # 0: name, 1: number
2410 compiler.misc.type.var=\
2411     {0}#{1}
2412 
2413 # CAP#n (where n is an int id) is an abbreviation for 'captured type'
2414 # 0: number
2415 compiler.misc.captured.type=\
2416     CAP#{0}
2417 
2418 # <INT#n> (where n is an int id) is an abbreviation for 'intersection type'
2419 # 0: number
2420 compiler.misc.intersection.type=\
2421     INT#{0}
2422 
2423 # where clause for captured type: contains upper ('extends {1}') and lower
2424 # ('super {2}') bound along with the wildcard that generated this captured type ({3})
2425 # 0: type, 1: type, 2: type, 3: type
2426 compiler.misc.where.captured=\
2427     {0} extends {1} super: {2} from capture of {3}
2428 
2429 # compact where clause for captured type: contains upper ('extends {1}') along
2430 # with the wildcard that generated this captured type ({3})
2431 # 0: type, 1: type, 2: unused, 3: type
2432 compiler.misc.where.captured.1=\
2433     {0} extends {1} from capture of {3}
2434 
2435 # where clause for type variable: contains upper bound(s) ('extends {1}') along with
2436 # the kindname ({2}) and location ({3}) in which the typevar has been declared
2437 # 0: type, 1: list of type, 2: symbol kind, 3: symbol
2438 compiler.misc.where.typevar=\
2439     {0} extends {1} declared in {2} {3}
2440 
2441 # compact where clause for type variable: contains the kindname ({2}) and location ({3})
2442 # in which the typevar has been declared
2443 # 0: type, 1: list of type, 2: symbol kind, 3: symbol
2444 compiler.misc.where.typevar.1=\
2445     {0} declared in {2} {3}
2446 
2447 # where clause for fresh type variable: contains upper bound(s) ('extends {1}').
2448 # Since a fresh type-variable is synthetic - there's no location/kindname here.
2449 # 0: type, 1: list of type
2450 compiler.misc.where.fresh.typevar=\
2451     {0} extends {1}
2452 
2453 # where clause for type variable: contains all the upper bound(s) ('extends {1}')
2454 # of this intersection type
2455 # 0: type, 1: list of type
2456 compiler.misc.where.intersection=\
2457     {0} extends {1}
2458 
2459 ### Where clause headers ###
2460 compiler.misc.where.description.captured=\
2461     where {0} is a fresh type-variable:
2462 
2463 # 0: set of type
2464 compiler.misc.where.description.typevar=\
2465     where {0} is a type-variable:
2466 
2467 # 0: set of type
2468 compiler.misc.where.description.intersection=\
2469     where {0} is an intersection type:
2470 
2471 # 0: set of type
2472 compiler.misc.where.description.captured.1=\
2473     where {0} are fresh type-variables:
2474 
2475 # 0: set of type
2476 compiler.misc.where.description.typevar.1=\
2477     where {0} are type-variables:
2478 
2479 compiler.misc.where.description.intersection.1=\
2480     where {0} are intersection types:
2481 
2482 ###
2483 # errors related to doc comments
2484 
2485 compiler.err.dc.bad.entity=\
2486     bad HTML entity
2487 
2488 compiler.err.dc.bad.gt=\
2489     bad use of ''>''
2490 
2491 compiler.err.dc.bad.inline.tag=\
2492     incorrect use of inline tag
2493 
2494 compiler.err.dc.identifier.expected=\
2495     identifier expected
2496 
2497 compiler.err.dc.malformed.html=\
2498     malformed HTML
2499 
2500 compiler.err.dc.missing.semicolon=\
2501     semicolon missing
2502 
2503 compiler.err.dc.no.content=\
2504     no content
2505 
2506 compiler.err.dc.no.tag.name=\
2507     no tag name after '@'
2508 
2509 compiler.err.dc.gt.expected=\
2510     ''>'' expected
2511 
2512 compiler.err.dc.ref.bad.parens=\
2513     '')'' missing in reference
2514 
2515 compiler.err.dc.ref.syntax.error=\
2516     syntax error in reference
2517 
2518 compiler.err.dc.ref.unexpected.input=\
2519     unexpected text
2520 
2521 compiler.err.dc.unexpected.content=\
2522     unexpected content
2523 
2524 compiler.err.dc.unterminated.inline.tag=\
2525     unterminated inline tag
2526 
2527 compiler.err.dc.unterminated.signature=\
2528     unterminated signature
2529 
2530 compiler.err.dc.unterminated.string=\
2531     unterminated string
2532 
2533