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

Mon, 25 Mar 2013 16:55:14 -0700

author
mfang
date
Mon, 25 Mar 2013 16:55:14 -0700
changeset 1658
fdf30b225e1c
parent 1620
3806171b52d8
child 1677
94a202228ec2
permissions
-rw-r--r--

8010521: jdk8 l10n resource file translation update 2
Reviewed-by: naoto, yhuang

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

mercurial