src/jdk.rmic/share/classes/sun/tools/javac/resources/javac.properties
author phh
Sat, 30 Nov 2019 14:33:05 -0800
changeset 59330 5b96c12f909d
parent 54518 50b34791a1d2
permissions -rw-r--r--
8234541: C1 emits an empty message when it inlines successfully Summary: Use "inline" as the message when successfull Reviewed-by: thartmann, mdoerr Contributed-by: navy.xliu@gmail.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
54518
50b34791a1d2 8217405: rmic should reject class files with preview features enabled
smarks
parents: 47216
diff changeset
     2
# Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
javac.err.internal=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
	Internal error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
javac.err.eof.in.comment=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
	Comment not terminated at end of input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
javac.err.eof.in.string=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
	String not terminated at end of input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
javac.err.newline.in.string=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
	String not terminated at end of line.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
javac.err.invalid.char.constant=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
	Invalid character constant.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
javac.err.unbalanced.paren=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
	Unbalanced parentheses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
javac.err.invalid.escape.char=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
	Invalid escape character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
javac.err.invalid.hex.number=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
	Hexadecimal numbers must contain at least one hexadecimal digit.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
javac.err.invalid.octal.number=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
	Invalid character in octal number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
javac.err.invalid.number=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
	Invalid character in number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
javac.err.funny.char=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
	Invalid character in input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
javac.err.float.format=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
	Invalid floating point format.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
javac.err.overflow.int.oct=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
	Integer literal out of range.  Octal int literals must be in \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
	the range 00 to 037777777777.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
javac.err.overflow.int.dec=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
	Integer literal out of range.  Decimal int literals must be in \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
	the range -2147483648 to 2147483647.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
javac.err.overflow.int.hex=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
	Integer literal out of range.  Hexadecimal int literals must be in \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
	the range 0x0 to 0xffffffff.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
javac.err.overflow.long.oct=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
	Integer literal out of range.  Octal long literals must be in \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
	the range 00L to 01777777777777777777777L.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
javac.err.overflow.long.dec=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
	Integer literal out of range.  Decimal long literals must be in \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
	the range -9223372036854775808L to 9223372036854775807L.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
javac.err.overflow.long.hex=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
	Integer literal out of range.  Hexadecimal long literals must be in \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
	the range 0x0L to 0xffffffffffffffffL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
javac.err.overflow.float=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
	Numeric overflow: float literal too large.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
javac.err.overflow.double=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
	Numeric overflow: double literal too large.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
javac.err.underflow.float=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
	Numeric underflow: float literal too small.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
javac.err.underflow.double=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
	Numeric underflow: double literal too small.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
javac.err.token.expected=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
	''{0}'' expected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
javac.err.statement.expected=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
	Statement expected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
javac.err.type.expected=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
	Type expected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
javac.err.identifier.expected=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
	Identifier expected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
javac.err.class.expected=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
	''class'' or ''interface'' keyword expected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
javac.err.toplevel.expected=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
	Class or interface declaration expected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
javac.err.missing.term=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
	Missing term.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
javac.err.assign.in.conditionalexpr=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
	Assignment expressions are not permitted as the third subexpression \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
	of a conditional expression (that is, a ? : expression).  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
	Try parenthesizing this assignment expression.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
javac.err.else.without.if=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
	''else'' without ''if''.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
javac.err.catch.without.try=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
	''catch'' without ''try''.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
javac.err.finally.without.try=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
	''finally'' without ''try''.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
javac.err.try.without.catch.finally=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
	''try'' without ''catch'' or ''finally''.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
javac.err.case.without.switch=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
	''case'' outside switch statement.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
javac.err.default.without.switch=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
	''default'' outside switch statement.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
javac.err.io.exception=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
	I/O error in {0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
javac.err.io.exception.package=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
	I/O error while checking for existence of package {0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
javac.err.malformed.attribute=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
	The class file containing {0} has a malformed ''{1}'' attribute.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
javac.err.array.index.required=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
	Array index required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
javac.err.not.array=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
	[] can only be applied to arrays. It can''t be applied to {0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
javac.err.array.dim.in.decl=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
	Can''t specify array dimension in a declaration.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
javac.err.array.dim.in.type=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
	Can''t specify array dimension in a type expression.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
javac.err.invalid.array.expr=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
	Array constants can only be used in initializers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
javac.err.invalid.array.init=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
	Invalid initializer for type {0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
javac.err.invalid.lhs.assignment=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
	Invalid left hand side of assignment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
javac.err.invalid.args=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
	Invalid arguments to {0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
javac.err.invalid.cast=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
	Invalid cast from {0} to {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
javac.err.invalid.instanceof=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
	Impossible for {0} to be instance of {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
javac.err.invalid.type.expr=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
	Invalid type expression.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
javac.err.anonymous.extends=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
	Only named classes can have ''extends'' or ''implements'' clauses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
javac.err.invalid.field.reference=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
	Attempt to reference field {0} in a {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
javac.err.no.such.field=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
	No variable {0} defined in {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
javac.err.no.field.access=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
	Variable {0} in {1} not accessible from {2}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
javac.err.no.type.access=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
	Inner type {0} in {1} not accessible from {2}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
javac.err.cant.access.member.type=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
	The type {1} to which the member {0} belongs is not accessible from {2}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
javac.err.inner.class.expected=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
	No inner class {0} found in {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
javac.err.no.static.field.access=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
	Can''t make a static reference to nonstatic variable {0} in {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
javac.err.inner.static.ref=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
	Can''t make a static reference to inner class {0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
javac.err.ambig.field=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
	Reference to {0} is ambiguous. It is defined in {1} and {2}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
javac.err.invalid.field=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
	Attempt to reference method {0} in {1} as an instance variable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
javac.err.assign.to.final=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
	Can''t assign a value to a final variable: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
javac.err.assign.to.blank.final=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
	Can''t assign a second value to a blank final variable: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
javac.err.qualified.static.final.assign=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
	The variable in an assignment to a static blank final must be a simple name (it may not follow a dot ''.'').
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
javac.err.bad.qualified.final.assign=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
	The variable in an assignment to a blank final must be a simple name or a simple name qualified by ''this'': ''{0}'' or ''this.{0}''.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
javac.err.assign.to.blank.final.in.loop=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
	Attempt to assign a blank final variable {0} in a loop. The initialization must occur exactly once.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
javac.err.assign.to.uplevel=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
	Attempt to assign to a variable {0} in a different method. From enclosing blocks, only final local variables are available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
javac.err.invalid.uplevel=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
	Attempt to use a non-final variable {0} from a different method. From enclosing blocks, only final local variables are available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
javac.err.undef.var=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
	Undefined variable: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
javac.err.undef.var.super=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
	Undefined variable: {0}.  The "super" keyword may only be used for member access and constructor invocation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
javac.err.undef.var.or.package=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
	Undefined variable or package name: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
javac.err.undef.class.or.package=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
	Undefined class or package name: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
javac.err.undef.var.class.or.package=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
	Undefined variable, class, or package name: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
javac.err.undef.class=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
	Undefined class name: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
javac.err.undef.var.or.class=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
	Undefined variable or class name: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
javac.err.var.not.initialized=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
	Variable {0} may not have been initialized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
javac.err.final.var.not.initialized=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
	Blank final variable ''{0}'' may not have been initialized. It must be assigned a value in an initializer, or in every constructor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
javac.err.access.inst.before.super=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
	Can''t reference {0} before the superclass constructor has been called.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
javac.err.ambig.class=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
	Ambiguous class: {0} and {1}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
javac.err.invalid.arg=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
	Invalid argument to {0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
javac.err.invalid.arg.type=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
	Invalid argument type {0} for {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
javac.err.invalid.length=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
	''length'' applied to {0}, which is not an array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
javac.err.invalid.constr.invoke=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
	Only constructors can invoke constructors.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
javac.err.constr.invoke.not.first=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
	Constructor invocation must be the first thing in a method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
javac.err.invalid.method.invoke=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
	Can''t invoke a method on a {0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
javac.err.undef.meth=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
	Method {0} not found in {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
javac.err.no.meth.access=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
	Method {0} in {1} is not accessible from {2}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
#warning:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
javac.err.no.override.access=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
	Note: Method {0} in {1} does not override the corresponding method in {2}.  If you are trying to override this method, you cannot do so because it is private to a different package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
javac.err.no.static.meth.access=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
	Can''t make static reference to method {0} in {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
javac.err.invalid.protected.method.use=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
	Can''t access protected method {0} in {1}. {2} is not a subclass of the current class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
javac.err.invalid.protected.field.use=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
	Can''t access protected field {0} in {1}. {2} is not a subclass of the current class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
javac.err.invalid.protected.type.use=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
	Can''t access protected inner type {0} in {1}. {2} is not a subclass of the current class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
javac.err.invalid.protected.constructor.use=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
	Can''t access protected constructor of {0}.  Instance creation is permitted only within the package in which the constructor is defined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
javac.err.invalid.method=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
	Reference to variable {0} in {1} as if it were a method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
javac.err.invalid.var=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
	Reference to method {0} in {1} as if it were a variable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
javac.err.synchronized.null=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
	The null literal is not a legal argument for the synchronized statement.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
#all messages related to deprecation are warnings:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
javac.err.class.is.deprecated=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
	Note: {0} has been deprecated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
javac.err.meth.is.deprecated=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
	Note: The method {0} in {1} has been deprecated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
javac.err.constr.is.deprecated=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
	Note: The constructor {0} has been deprecated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
javac.err.field.is.deprecated=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
	Note: The variable {0} in {1} has been deprecated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
javac.err.note.deprecations=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
	Note: {0} files use or override a deprecated API.  Please consult the documentation for a better alternative in each case.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
javac.err.note.1deprecation=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
	Note: {0} uses or overrides a deprecated API.  Please consult the documentation for a better alternative.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
javac.err.note.deprecations.silent=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
	Note: {0} files use or override a deprecated API.  Recompile with "-deprecation" for details.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
javac.err.note.1deprecation.silent=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
	Note: {0} uses or overrides a deprecated API.  Recompile with "-deprecation" for details.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
javac.err.invalid.array.dim=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
	Invalid array dimension.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
javac.err.ambig.constr=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
	Constructor is ambiguous: {0}, {1}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
javac.err.explicit.cast.needed=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
	Incompatible type for {0}. Explicit cast needed to convert {1} to {2}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
javac.err.incompatible.type=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
	Incompatible type for {0}. Can''t convert {1} to {2}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
javac.err.invalid.term=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
	Invalid term.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
javac.err.abstract.class=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
	{0} must be declared abstract. It does not define {1} from {2}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
javac.err.abstract.class.cannot.override=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
	{0} must be declared abstract.  The package-private abstract method {1} in superclass {2} is inaccessible and cannot be overridden.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
javac.err.new.intf=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
	{0} is an interface. It can''t be instantiated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
javac.err.invoke.abstract=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
	Can''t directly invoke abstract method {0} in {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
javac.err.unmatched.meth=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
	No method matching {0} found in {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
javac.err.unmatched.constr=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
	No constructor matching {0} found in {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
javac.err.wrong.number.args=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
	Wrong number of arguments in {0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
javac.err.forward.ref=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
	Can''t make forward reference to {0} in {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
javac.err.array.dim.missing=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
	Array dimension missing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
javac.err.new.abstract=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
	{0} is an abstract class. It can''t be instantiated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
javac.err.label.not.found=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
	No label definition found for {0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
javac.err.invalid.break=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
	''break'' must be in loop or switch.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
javac.err.invalid.continue=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
	''continue'' must be in loop.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
javac.err.branch.to.uplevel=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
	a ''break'' or ''continue'' must transfer control within the same method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
javac.err.invalid.decl=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
	Invalid declaration.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
javac.err.return.with.value=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
	''return'' with value from {0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
javac.err.return.without.value=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
	''return'' without value from {0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
javac.err.return.inside.static.initializer=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
	''return'' inside static initializer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
javac.err.invalid.label=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
	Invalid label.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
javac.err.return.required.at.end=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
	Return required at end of {0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
javac.err.duplicate.label=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
	Duplicate case label: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
javac.err.switch.overflow=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
	Case label {0} too large for ''switch'' on {1}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
javac.err.nested.duplicate.label=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
	A statement cannot be labeled with the same identifier as one of its enclosing statements: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
javac.err.declaration.with.label=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
	A declaration cannot be labeled: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
javac.err.const.expr.required=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
	Constant expression required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
javac.err.duplicate.default=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
	Duplicate ''default'' label.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
javac.err.not.supported=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
	''{0}'' not supported.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
javac.err.return.with.value.constr=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
	''return'' with value from constructor: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
javac.err.package.repeated=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
	Only one package declaration allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
javac.err.class.multidef=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
	Class {0} already defined in {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
javac.err.class.multidef.import=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
	Class name {0} clashes with imported class {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
javac.err.intf.constructor=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
	Interfaces can''t have constructors.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
javac.err.constr.modifier=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
	Constructors can''t be native, abstract, static, synchronized, or final: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
javac.err.intf.initializer=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
	Interfaces can''t have static initializers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
javac.err.intf.modifier.method=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
	Interface methods can''t be native, static, synchronized, final, private, or protected : {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
javac.err.intf.modifier.field=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
	Interface fields can''t be private or protected: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
javac.err.transient.meth=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
	Method {0} can''t be transient. Only variables can be transient.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
javac.err.volatile.meth=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
	Method {0} can''t be volatile. Only variables can be volatile.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
javac.err.abstract.private.modifier=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
	Abstract methods can''t be private: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
javac.err.abstract.static.modifier=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
	Abstract methods can''t be static: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
javac.err.abstract.final.modifier=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
	Abstract methods can''t be final: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
javac.err.abstract.native.modifier=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
	Abstract methods can''t be native: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
javac.err.abstract.synchronized.modifier=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
	Abstract methods can''t be synchronized: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
javac.err.invalid.meth.body=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
	Abstract and native methods can''t have a body: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
javac.err.var.modifier=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
	Variables can''t be synchronized, abstract or native: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
javac.err.var.floatmodifier=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
	Variables can''t be declared strict: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
javac.err.inner.modifier=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
	Inner classes can''t be volatile, transient, native, or synchronized: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
javac.err.transient.modifier=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
	Transient variables can''t be members of interfaces: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
javac.err.volatile.modifier=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
	Volatile variables can''t be final or members of interfaces: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
javac.err.initializer.needed=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
	This final variable must be initialized: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
javac.err.meth.multidef=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
	Duplicate method declaration: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
javac.err.meth.redef.rettype=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
	Methods can''t be redefined with a different return type: {0} was {1}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
javac.err.var.multidef=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
	Duplicate variable declaration: {0} was {1}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
javac.err.inner.class.multidef=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
	Duplicate inner class declaration: {0} is already defined in this scope.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
javac.err.intf.super.class=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
	Superclass of {0} can''t be an interface: {1}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
javac.err.cant.access.class=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
	Can''t access {0}. Class or interface must be public, in same package, or an accessible member class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
javac.err.unqualified.name.required=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
	The type name in a qualified 'new' expression must be an unqualified identifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
javac.err.repeated.modifier=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
	Repeated modifier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
javac.err.inconsistent.modifier=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
	Inconsistent member declaration. At most one of public, private, or protected may be specified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
javac.err.super.is.final=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
	Can''t subclass final classes: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
javac.err.super.is.intf=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
	Can''t subclass interfaces: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
javac.err.cyclic.super=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
	Cyclic class inheritance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
javac.err.super.is.inner=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
	Cyclic class inheritance:  A subclass cannot enclose a superclass.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
javac.err.cyclic.intf=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
	Cyclic interface inheritance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
javac.err.cyclic.scoping=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
	Cyclic class inheritance or scoping.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
javac.err.not.intf=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
	{0} must be an interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
javac.err.final.intf=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
	Interfaces can''t be final: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
javac.err.intf.impl.intf=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
	An interface can''t implement anything; it can only extend other interfaces.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
javac.err.multiple.inherit=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
	Multiple inheritance is not supported.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
javac.err.intf.repeated=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
	Interface {0} repeated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
javac.err.class.format=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
	Invalid class file format in {0}.  {1}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
javac.err.truncated.class=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
	Unexpected end of file encountered while reading the class file {0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
javac.err.no.meth.body=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
	Method {0} requires a method body. Otherwise declare it as abstract.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
javac.err.no.constructor.body=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
	Constructor {0} requires a method body.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
javac.err.bad.constructor.modifier=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
	Constructors may not be modified by strictfp.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
javac.err.void.inst.var=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
	Instance variables can''t be void: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
javac.err.invalid.method.decl=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
	Invalid method declaration; return type required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
javac.err.invalid.method.decl.name=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
	Invalid method declaration; method name required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
javac.err.invalid.method.decl.qual=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
	Invalid qualified constructor name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
javac.err.super.not.found=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
	Superclass {0} of {1} not found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
javac.err.intf.not.found=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
	Interface {0} of {1} not found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
javac.err.final.abstract=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        Class {0} can''t be declared both abstract and final.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
javac.err.void.array=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
	Array of void is not a valid type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
javac.err.void.argument=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
	Argument can''t have type void: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
javac.err.invalid.expr=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
	Invalid expression statement.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
javac.err.catch.not.reached=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
	catch not reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
javac.err.stat.not.reached=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
	Statement not reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
javac.err.init.no.normal.completion=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
	Initializer must be able to complete normally.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
javac.err.arithmetic.exception=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
	Arithmetic exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
javac.err.generic=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
	{0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
javac.err.public.class.file=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
	Public {0} must be defined in a file called "{1}".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
javac.err.package.class.file=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
	{0} is defined in {1}. Because it is used outside of its source file, it should be defined in a file called "{2}".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
javac.err.lose.precision=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
	Possible loss of precision. Use an explicit cast to convert {0} to {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
javac.err.duplicate.argument=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
	Variable ''{0}'' is used twice in the argument list of this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
javac.err.local.redefined=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
	Variable ''{0}'' is already defined in this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
javac.err.local.class.redefined=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
	Local class ''{0}'' is already defined in this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
javac.err.inner.redefined=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
	The class name ''{0}'' is already defined in this scope.  An inner class may not have the same simple name as any of its enclosing classes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
javac.err.inherited.hides.field=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
	Variable ''{0}'' is inherited in {1}, and hides a variable of the same name in {2}. An explicit ''this'' qualifier must be used to select the desired instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
javac.err.inherited.hides.local=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
	Variable ''{0}'' is inherited in {1}, and hides a local variable of the same name. An explicit ''this'' qualifier must be used to select the variable, or the local must be renamed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
javac.err.inherited.hides.method=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
	Method ''{0}'' is inherited in {1}, and hides a method of the same name in {2}. An explicit ''this'' qualifier must be used to select the desired instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
javac.err.inherited.hides.type=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
	Type ''{0}'' is inherited in {1}, and hides a type of the same name in an enclosing scope. An explicit qualifier prefix must be used to name this type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
javac.err.private.class=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
	The type {0} can''t be private. Package members are always accessible within the current package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
javac.err.static.class=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
	The type {0} can''t be declared static. It is already top-level, since it is a member of a package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
javac.err.protected.class=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
	The type {0} can''t be made protected. Package members can either be public or local to the current package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
javac.err.recursive.constr=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
	Recursive constructor invocation: {0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
javac.err.wrong.class=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
	File {0} does not contain {1} as expected, but {2}. Please remove the file, or make sure it appears in the correct subdirectory of the class path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
javac.err.wrong.source=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
	File {0} does not contain {1} as expected. Please adjust the class path so that the file does not appear in the {2}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
javac.err.class.not.found=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
	Class {0} not found in {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
javac.err.class.not.found.no.context=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
	Class {0} not found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
javac.err.package.not.found=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
	Package {0} not found in {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
javac.err.package.not.found.strong=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
	Package {0} not found.  Please adjust the classpath so that package {0} is accessible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
javac.err.class.package.conflict=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
	A type and a package cannot have the same name.  The name {0} cannot be used to name a class while the package {0} is accessible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
javac.err.package.class.conflict=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
	A type and a package cannot have the same name.  The name {0} cannot be used to name a package while the class {1} is accessible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
javac.err.package.class.conflict.strong=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
	The name {0} must refer to a package.  It is illegal for there to be an accessible class named {1} because types and packages cannot have the same name.  The class {1} should be renamed or taken off the classpath.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
javac.err.illegal.mangled.name=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
	Invalid name {0} for {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
javac.err.class.and.package=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
	Ambiguous name: {0} is both a class and a package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
javac.err.throws.not.throwable=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
	{0} in throws clause must be a subclass of class java.lang.Throwable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
javac.err.throw.not.throwable=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
	Can''t throw {0}; it must be a subclass of class java.lang.Throwable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
javac.err.catch.not.throwable=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
	Can''t catch {0}; it must be a subclass of class java.lang.Throwable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
javac.err.initializer.exception=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
	Exception {0} can''t be thrown in initializer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
javac.err.cant.read=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
	Can''t read: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
javac.err.cant.write=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
	Can''t write: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
javac.err.fatal.error=\
30819
45d6fd3af6ac 8081359: Update bug reporting URL
darcy
parents: 30789
diff changeset
   499
	An error has occurred in the compiler; please file a bug report (http://bugreport.java.com/bugreport/).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
javac.err.fatal.exception=\
30819
45d6fd3af6ac 8081359: Update bug reporting URL
darcy
parents: 30789
diff changeset
   501
	An exception has occurred in the compiler; please file a bug report (http://bugreport.java.com/bugreport/).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
javac.err.no.inner.classes=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
	Support for inner classes has been disabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
javac.err.uncaught.exception=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
	Exception {0} must be caught, or it must be declared in the throws clause of this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
javac.err.constructor.exception=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
	Exception {0} must be caught, or it must be declared in the throws clause of this constructor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
javac.err.def.constructor.exception=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
	A default constructor cannot be created for this class because the constructor of its superclass throws the exception {0}.  Define the constructor for this class explicitly.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
javac.err.catch.not.thrown=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
	Exception {0} is never thrown in the body of the corresponding try statement.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
#warning:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
javac.err.array.clone.supported=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
	Note: The cloning of an array does not throw any checked exceptions, and therefore does not require any catch clauses.  Please remove unused catch clauses, or if you wish to retain compatibility with older compilers, you may insert an artificial throw as follows:  if (false) throw new CloneNotSupportedException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
javac.err.no.outer.arg=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
	No enclosing instance of {0} is in scope; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
	an explicit one must be provided when creating {1}, \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
	as in "outer. new Inner()" or "outer. super()".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
javac.err.no.default.outer.arg=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
	No enclosing instance of {0} is in scope; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
	cannot create a default constructor for {1}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
javac.err.no.outer.base=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
	No enclosing instance of {0} is in scope; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
	an explicit one must be provided when accessing {1}, \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
	as in "outer.member".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
javac.err.inner.interface=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
	Member interfaces can only occur in interfaces and top-level classes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
javac.err.static.inner.class=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
	The type {0} can''t be static.  Static members can only occur in interfaces and top-level classes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
javac.err.static.inner.field=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
	Variable {0} can''t be static in {1}.  Only members of interfaces and top-level classes can be static.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
javac.err.static.inner.method=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
	Method {0} can''t be static in {1}.  Only members of interfaces and top-level classes can be static.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
javac.err.too.many.errors=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
	Too many errors.  (The limit on reported errors is {0}.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
javac.err.override.static.with.instance=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
	The instance method {0} declared in {1} cannot override the static \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
	method of the same signature declared in {2}.  It is illegal to \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
	override a static method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
javac.err.hide.instance.with.static=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
	The static method {0} declared in {1} cannot hide the instance \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
	method of the same signature declared in {2}.  It is illegal to \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
	hide an instance method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
javac.err.override.final.method=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
	The method {0} declared in {1} cannot override the final method of \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
	the same signature declared in {2}.  Final methods cannot be \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
	overridden.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
javac.err.override.is.deprecated=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
	The method {0} declared in {1} is not deprecated, but \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
	overrides a deprecated method of the \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
	same signature declared in {2}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
javac.err.override.more.restrictive=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
	The method {0} declared in {1} cannot override the method of the \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
	same signature declared in {2}.  The access modifier is made more \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
	restrictive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
javac.err.override.different.return=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
	The method {0} declared in {1} cannot override the method of the \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
	same signature declared in {2}.  They must have the same return \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
	type.	
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
javac.err.override.incompatible.exceptions=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
	The method {0} declared in {1} cannot override the method of the \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
	same signature declared in {2}.  Their throws clauses are \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
	incompatible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
javac.err.meet.different.return=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
	The method {0} inherited from {1} is incompatible with the method of \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
	the same signature inherited from {2}.  They must have the same \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
	return type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
javac.err.nontrivial.meet=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
	The definitions of method {0} inherited from {1} and {2} are \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
	compatible, but the combination of them is nontrivial and has not \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
	been implemented.  As a workaround, declare {0} explicitly in this \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
	class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
javac.err.method.too.long=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
	This code requires generating a method with more than \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
	64K bytes.  Virtual machines may refuse the resulting class file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
javac.err.version.too.old=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
	The major version ''{0}'' is too old for this tool to understand.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
javac.err.version.too.recent=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
	The major.minor version ''{0}'' is too recent for this tool \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
	to understand.
54518
50b34791a1d2 8217405: rmic should reject class files with preview features enabled
smarks
parents: 47216
diff changeset
   582
javac.err.version.preview=\
50b34791a1d2 8217405: rmic should reject class files with preview features enabled
smarks
parents: 47216
diff changeset
   583
	The major.minor version ''{0}'' indicates the class was compiled with \
50b34791a1d2 8217405: rmic should reject class files with preview features enabled
smarks
parents: 47216
diff changeset
   584
	preview features enabled, which this tool does not support.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
benv.parsed_in=[parsed {0} in {1} ms]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
benv.loaded_in=[loaded {0} in {1} ms]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
benv.failed_to_close_class_path=failed to close class path: {0}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
main.usage=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
Usage: {0} <options> <source files>\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
where <options> includes:\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
\ \ -g                     Generate all debugging info\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
\ \ -g:none                Generate no debugging info\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
\ \ -g:'{'lines,vars,source'}' Generate only some debugging info\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
\ \ -O                     Optimize; may hinder debugging or enlarge class files\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
\ \ -nowarn                Generate no warnings\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
\ \ -verbose               Output messages about what the compiler is doing\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
\ \ -deprecation           Output source locations where deprecated APIs are used\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
\ \ -classpath <path>      Specify where to find user class files\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
\ \ -sourcepath <path>     Specify where to find input source files\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
\ \ -bootclasspath <path>  Override location of bootstrap class files\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
\ \ -extdirs <dirs>        Override location of installed extensions\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
\ \ -d <directory>         Specify where to place generated class files\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
\ \ -encoding <encoding>   Specify character encoding used by source files\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
\ \ -target <release>      Generate class files for specific VM version
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
main.unsupported.usage=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
\ \ -Xdepend         Recursively search for more recent source files to recompile\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
\ \ -Xstdout         Send messages to System.out\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
\ \ -Xverbosepath    Describe how paths and standard extensions were searched\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
\ \ -J<runtime flag> Pass argument to the java interpreter\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
The -X and -J options are non-standard and subject to change without notice.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
main.conflicting.options=The options {0} and {1} may not be used at the same time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
main.option.already.seen=The {0} option may be specified no more than once.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
main.option.requires.argument=The {0} option requires an argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
main.bad.debug.option=The {0} option is not well formed.  Only specify "lines", "vars", and "source" separated by commas.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
main.no.such.directory=The {0} directory does not exist.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
main.no.such.option={0} is an invalid option or argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
main.unknown.release=The release ''{0}'' is unknown to this compiler.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
main.wrote=[wrote {0}]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
main.errors={0} errors
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
main.1error=1 error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
main.warnings={0} warnings
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
main.1warning=1 warning
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
main.done_in=[done in {0} ms]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
main.no.memory=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
	The compiler has run out of memory.  Consider using the "-J-mx<number>" command line option to increase the maximum heap size.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
main.stack.overflow=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
	The compiler has run out of stack space.  Consider using the "-J-oss<number>" command line option to increase the memory allocated for the Java stack.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
main.path.msg=\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
	[The source classpath is "{0}"]\n\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
	[The library classpath is "{1}"]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
javac.err.invalid.encoding.char=\
30789
9eca83469588 8074431: Remove native2ascii tool
mchung
parents: 25859
diff changeset
   638
	The source file encoding may be different with this platform encoding. Please use -encoding option to adjust file encoding, or make sure source file converted to ASCII encoding.