home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / inne / win95 / sieciowe / hotja32.lzh / hotjava / classes / java / tools / javac / strings.rsrc < prev   
Text File  |  1995-08-11  |  6KB  |  208 lines

  1. # Copyright (c) 1994 by FirstPerson, Inc.
  2. # All rights reserved.
  3. #
  4. # @(#)strings.rsrc    1.24 95/04/05 July 1994
  5. #
  6. #    Arthur van Hoff, July 1994
  7. #
  8. # This file contains strings used by the Java compiler
  9. #
  10.  
  11. # System errors
  12. *0
  13. Internal error.
  14.  
  15. # Scanner errors
  16. *1
  17. Comment not terminated at end of input.
  18. String not terminated at end of input.
  19. String not terminated at end of line.
  20. Invalid character constant.
  21.  
  22. *5
  23. Unbalanced bracket.
  24. Invalid escape character.
  25. Invalid character in input.
  26. Invalid floating point format.
  27.  
  28. # Parser errors
  29. *10
  30. '%s' expected.
  31. Statement expected.
  32. Type expected.
  33. Identifier expected.
  34. 'class' or 'interface' keyword expected.
  35.  
  36. *15
  37. Class or interface definition expected.
  38.  
  39. *20
  40. Missing term.
  41. 'else' without 'if'.
  42. 'catch' without 'try'.
  43. 'finally' without 'try'.
  44. 'case' outside switch statement.
  45.  
  46. *25
  47. 'default' outside switch statement.
  48.  
  49. *100
  50. Array index required.
  51. [] can only be applied to arrays. It can't be applied to %s.
  52. Can't specify array dimension in a declaration.
  53. Can't specify array dimension in a type expression.
  54. Array constants can only be used in initializers.
  55.  
  56. *105
  57. Invalid initializer for type %s.
  58. Invalid left hand side of assignment.
  59. Invalid arguments to %s.
  60. Invalid cast from %s to %s.
  61. Invalid type expression.
  62.  
  63. *111
  64. Attempt to reference variable %s in a %s.
  65. No variable %s defined in %s.
  66. Variable %s in %s not accessible from %s.
  67. Can't make a static reference to non static variable %s in %s.
  68.  
  69. *115
  70. Reference to %s is ambiguous. It is defined in %s and %s.
  71. Attempt to reference method %s in %s as an instance variable.
  72. Can't assign values to final variables: %s
  73. Undefined variable: %s
  74. Variable %s may not have been initialized.
  75.  
  76. *120
  77. Can't reference %s before the super class constructor has been called.
  78. Ambiguous class: %s and %s
  79. Invalid argument to %s.
  80. Invalid argument type %s for %s.
  81. 'length' applied to %s, which is not an array.
  82.  
  83. *125
  84. Only constructors can invoke constructors.
  85. Constructor invocation must be the first thing in a method.
  86. Can't invoke a method on a %s.
  87. Method %s not found in %s.
  88. Method %s in %s is not accessible from %s.
  89.  
  90. *130
  91. Can't make static reference to method %s in %s.
  92. Reference to variable %s in %s as if it was a method.
  93. Invalid array dimension.
  94. No such constructor for %s.
  95. Constructor is ambiguous: %s, %s
  96.  
  97. *135
  98. Incompatible type for %s. Explicit cast needed to convert %s to %s.
  99. Incompatible type for %s. Can't convert %s to %s.
  100. invalid term.
  101. %s is an abstract class. It does not define %s from %s.
  102. %s is an interface. It can't be instantiated.
  103.  
  104. *140
  105. Can't directly invoke abstract method %s in %s.
  106. No method matching %s found in %s.
  107. No constructor matching %s found in %s.
  108. Can't make forward reference to %s in %s.
  109. Array dimension missing.
  110.  
  111. *200
  112. No label definition found for %s.
  113. 'break' must be in loop or switch.
  114. 'continue' must be in loop.
  115. Invalid declaration.
  116.  
  117. *205
  118. 'return' with value from %s.
  119. 'return' without value from %s.
  120. Invalid label.
  121. Return required at end of %s.
  122. Duplicate case label: %s
  123.  
  124. *210
  125. Constant expression required.
  126. Duplicate 'default' label.
  127. '%s' not supported.
  128. 'return' with value from constructor: %s
  129.  
  130. *300
  131. Only one package declaration allowed.
  132. Class %s already defined in %s.
  133. Final methods can't be overriden. Method %s is final in %s.
  134. Method redefined with different return type: %s was %s
  135. Static methods can't be overridden. Method %s is static in %s.
  136.  
  137. *305
  138. Methods can't be overridden to be more private. Method %s is public in %s.
  139. Methods can't be overridden to be more private. Method %s is protected in %s.
  140. Methods can't be overridden to be more private. Method %s is not private in %s.
  141. Interfaces can't have constructors.
  142. Constructors can't be native, abstract, static, synchronized or final: %s
  143.  
  144. *310
  145. Interfaces can't have static initializers.
  146. Interface methods can't be static, synchronized, native or final: %s
  147. Method %s can't be transient. Only variables can be transient.
  148. Method %s can't be threadsafe. Only variables can be threadsafe. Methods can be synchronized.
  149. Static methods can't be abstract: %s
  150.  
  151. *315
  152. Abstract and native methods can't have a body: %s
  153. Variables can't be synchronized, abstract or native: %s
  154. Transient variables can't be final or static: %s
  155. Final variables must be initialized: %s
  156. Duplicate method declaration: %s
  157.  
  158. *320
  159. Methods can't be redefined with a different return type: %s was %s
  160. Duplicate variable declaration: %s was %s
  161. Superclass of %s can't be an interface: %s
  162. Can't access %s. Only public classes and interfaces in other packages can be accessed.
  163. Repeated modifier.
  164.  
  165. *325
  166. Can't subclass final classes: %s
  167. Can't subclass interfaces: %s
  168. Cyclic class inheritance.
  169. Cyclic interface inheritance.
  170. %s must be an interface.
  171.  
  172. *330
  173. Interfaces can't be final: %s
  174. Class %s not found in %s.
  175. An interface can't implement anything, it can only extend other interfaces.
  176. Multiple inheritance is not supported.
  177. Interface %s repeated.
  178.  
  179. *335
  180. Invalid class file format: %s, %s
  181. %s must have a default constructor.
  182. Can't access the default constructor of %s.
  183. Method %s requires a method body. Otherwise declare it as abstract.
  184. Instance variables can't be void: %s
  185.  
  186. *340
  187. Invalid method declaration, return type required.
  188. Super class %s of %s not found.
  189. Interface %s of %s not found.
  190. Final %s can't be abstract. It does not define %s from %s.
  191. Abstract method %s can't override non-abstract method %s from %s.
  192.  
  193. *500
  194. %s
  195.  
  196. *1000
  197. Warning: Statement not reached.
  198. Warning: Public %s should be defined in a file called "%s".
  199. Warning: Possible loss of precision. Use an explicit cast to convert %s to %s.
  200. Warning: Variable '%s' is already defined in this method.
  201. Warning: Classes can't be private. Classes are always accessible within the current package.
  202.  
  203. *1005
  204. Warning: 'const' is no longer supported, use 'final' instead.
  205. Warning: Value computed but not used.
  206. Warning: Recursive constructor invokation: %s.
  207. Warning: file %s does not contain %s as expected, but %s. Please remove the file.
  208.