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