You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

messages.properties 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. #-Xlint:ignore,error,warning will set the level for all Xlint warnings. -Xlint, alone, is an abbreviation for
  2. -Xlint:warning.
  3. The -Xlintfile:lint.properties allows fine-grained control. In tools.jar, see
  4. org/aspectj/weaver/XlintDefault.properties for the default behavior and a template to copy.
  5. ### AspectJ-specific messages
  6. compiler.name = AspectJ Compiler 1.8.1
  7. compiler.version = Eclipse Compiler BETA_JAVA8_3f60ba6, 3.10
  8. compiler.copyright =
  9. ## this next one superceded by above...
  10. ## configure.version = AspectJ Compiler 1.1
  11. configure.directoryNotExist = invalid option: {0}
  12. ## 3456789012345678901234567890123456789012345678901234567890123456789012345
  13. ### miscellaneous
  14. misc.usage = {0}\n\
  15. \n\
  16. \tUsage: <options> <source file | @argfile>..\n\
  17. \n\
  18. AspectJ-specific options:\n\
  19. \t-inpath <list> use classes in dirs and jars/zips in <list> as source\n\
  20. \t (<list> uses platform-specific path delimiter)\n\
  21. \t-injars <jarList> use classes in <jarList> zip files as source\n\
  22. \t (<jarList> uses classpath delimiter)\n\
  23. \t deprecated - use inpath instead.\n\
  24. \t-aspectpath <list> weave aspects in .class files from <list> dirs and jars/zip into sources\n\
  25. \t (<list> uses classpath delimiter)\n\
  26. \t-outjar <file> put output classes in zip file <file>\n\
  27. \t-outxml generate META-INF/aop.xml\n\
  28. \t-outxmlfile <file> specify alternate destination output of -outxml\n\
  29. \t-argfile <file> specify line-delimited list of source files\n\
  30. \t-showWeaveInfo display information about weaving\n\
  31. \t-incremental continuously-running compiler, needs -sourceroots\n\
  32. \t (reads stdin: enter to recompile and ''q'' to quit)\n\
  33. \t-sourceroots <dirs> compile all .aj and .java files in <dirs>\n\
  34. \t (<dirs> uses classpath delimiter)\n\
  35. \t-crossrefs generate .ajsym file into the output directory\n\
  36. \t-emacssym generate .ajesym symbol files for emacs support\n\
  37. \t-Xlint same as ''-Xlint:warning''\n\
  38. \t-Xlint:<level> set default level for crosscutting messages\n\
  39. \t (<level> may be ignore, warning, or error)\n\
  40. \t-Xlintfile <file> specify properties file to set per-message levels\n\
  41. \t (cf org/aspectj/weaver/XlintDefault.properties)\n\
  42. \t-X print help on non-standard options\n\
  43. \n\
  44. Standard Eclipse compiler options:\n\
  45. \ Options enabled by default are prefixed with ''+''\n\
  46. \ \n\
  47. \ Classpath options:\n\
  48. \ -cp -classpath <directories and zip/jar files separated by ;>\n\
  49. \ specify location for application classes and sources\n\
  50. \ -bootclasspath <directories and zip/jar files separated by ;>\n\
  51. \ specify location for system classes\n\
  52. \ -d <dir> destination directory (if omitted, no directory is created)\n\
  53. \ -d none generate no .class files\n\
  54. \ -encoding <enc> specify custom encoding for all sources. Each file/directory can override it\n\
  55. \ when suffixed with ''[''<enc>'']'' (e.g. X.java[utf8])\n\
  56. \ \n\
  57. \ Compliance options:\n\
  58. \ -1.3 use 1.3 compliance level (implicit -source 1.3 -target 1.1)\n\
  59. \ -1.4 + use 1.4 compliance level\n\
  60. \ -1.5 -5 -5.0 use 1.5 compliance (-source 1.5 -target 1.5)\n\
  61. \ -1.6 -6 -6.0 use 1.6 compliance (-source 1.6 -target 1.6)\n\
  62. \ -1.7 -7 -7.0 use 1.7 compliance (-source 1.7 -target 1.7)\n\
  63. \ -1.8 -8 -8.0 use 1.8 compliance (-source 1.8 -target 1.8)\n\
  64. \ -source <version> set source level: 1.3 to 1.8 (or 5, 5.0, etc)\n\
  65. \ -target <version> set classfile target: 1.1 to 1.8 (or 5, 5.0, etc)\n\
  66. \ \n\
  67. \ Warning options:\n\
  68. \ -deprecation + deprecation outside deprecated code\n\
  69. \ -nowarn -warn:none disable all warnings\n\
  70. \ -warn:<warnings separated by ,> enable exactly the listed warnings\n\
  71. \ -warn:+<warnings separated by ,> enable additional warnings\n\
  72. \ -warn:-<warnings separated by ,> disable specific warnings\n\
  73. \ allDeadCode dead code including trivial if(DEBUG) check\n\
  74. \ allDeprecation deprecation including inside deprecated code\n\
  75. \ allJavadoc invalid or missing javadoc\n\
  76. \ allOver-ann all missing @Override annotations\n\
  77. \ all-static-method all method can be declared as static warnings\n\
  78. \ assertIdentifier + ''assert'' used as identifier\n\
  79. \ boxing autoboxing conversion\n\
  80. \ charConcat + char[] in String concat\n\
  81. \ compareIdentical + comparing identical expressions\n\
  82. \ conditionAssign possible accidental boolean assignment\n\
  83. \ constructorName + method with constructor name\n\
  84. \ deadCode + dead code excluding trivial if (DEBUG) check\n\
  85. \ dep-ann missing @Deprecated annotation\n\
  86. \ deprecation + deprecation outside deprecated code\n\
  87. \ discouraged + use of types matching a discouraged access rule\n\
  88. \ emptyBlock undocumented empty block\n\
  89. \ enumIdentifier ''enum'' used as identifier\n\
  90. \ enumSwitch incomplete enum switch\n\
  91. \ fallthrough possible fall-through case\n\
  92. \ fieldHiding field hiding another variable\n\
  93. \ finalBound type parameter with final bound\n\
  94. \ finally + finally block not completing normally\n\
  95. \ forbidden + use of types matching a forbidden access rule\n\
  96. \ hashCode missing hashCode() method when overriding equals()\n\
  97. \ hiding macro for fieldHiding, localHiding, typeHiding and\n\
  98. \ maskedCatchBlock\n\
  99. \ includeAssertNull raise null warnings for variables\n\
  100. \ that got tainted in an assert expression\n\
  101. \ indirectStatic indirect reference to static member\n\
  102. \ intfAnnotation + annotation type used as super interface\n\
  103. \ intfNonInherited + interface non-inherited method compatibility\n\
  104. \ intfRedundant find redundant superinterfaces\n\
  105. \ javadoc invalid javadoc\n\
  106. \ localHiding local variable hiding another variable\n\
  107. \ maskedCatchBlock + hidden catch block\n\
  108. \ nls string literal lacking non-nls tag //$NON-NLS-<n>$\n\
  109. \ noEffectAssign + assignment without effect\n\
  110. \ null potential missing or redundant null check\n\
  111. \ nullDereference + missing null check\n\
  112. \ over-ann missing @Override annotation (superclass)\n\
  113. \ paramAssign assignment to a parameter\n\
  114. \ pkgDefaultMethod + attempt to override package-default method\n\
  115. \ raw + usage of raw type\n\
  116. \ semicolon unnecessary semicolon, empty statement\n\
  117. \ serial + missing serialVersionUID\n\
  118. \ specialParamHiding constructor or setter parameter hiding a field\n\
  119. \ static-method method can be declared as static\n\
  120. \ static-access macro for indirectStatic and staticReceiver\n\
  121. \ staticReceiver + non-static reference to static member\n\
  122. \ super overriding a method without making a super invocation\n\
  123. \ suppress + enable @SuppressWarnings\n\
  124. \ When used with -err:, it can also silent optional\n\
  125. \ errors and warnings\n\
  126. \ syncOverride missing synchronized in synchr. method override\n\
  127. \ syntheticAccess synthetic access for innerclass\n\
  128. \ tasks(<tags separated by |>) tasks identified by tags inside comments\n\
  129. \ typeHiding + type parameter hiding another type\n\
  130. \ unavoidableGenericProblems + ignore unavoidable type safety problems\n\
  131. \ due to raw APIs\n\
  132. \ unchecked + unchecked type operation\n\
  133. \ unnecessaryElse unnecessary else clause\n\
  134. \ unqualifiedField unqualified reference to field\n\
  135. \ unused macro for unusedAllocation, unusedArgument,\n\
  136. \ unusedImport, unusedLabel, unusedLocal,\n\
  137. \ unusedPrivate, unusedThrown, and unusedTypeArgs\n\
  138. \ unusedAllocation allocating an object that is not used\n\
  139. \ unusedArgument unread method parameter\n\
  140. \ unusedImport + unused import declaration\n\
  141. \ unusedLabel + unused label\n\
  142. \ unusedLocal + unread local variable\n\
  143. \ unusedPrivate + unused private member declaration\n\
  144. \ unusedThrown unused declared thrown exception\n\
  145. \ unusedTypeArgs + unused type arguments for method and constructor\n\
  146. \ uselessTypeCheck unnecessary cast/instanceof operation\n\
  147. \ varargsCast + varargs argument need explicit cast\n\
  148. \ warningToken + unsupported or unnecessary @SuppressWarnings\n
  149. \ \n\
  150. \ Debug options:\n\
  151. \ -g[:lines,vars,source] custom debug info\n\
  152. \ -g:lines,source + both lines table and source debug info\n\
  153. \ -g all debug info\n\
  154. \ -g:none no debug info\n\
  155. \ -preserveAllLocals preserve unused local vars for debug purpose\n\
  156. \ \n\
  157. \ Advanced options:\n\
  158. \ -log <file> log to a file\n\
  159. \ -proceedOnError do not stop at first error, dumping class files with problem methods\n\
  160. \ -verbose enable verbose output\n\
  161. \ -referenceInfo compute reference info\n\
  162. \ -progress show progress (only in -log mode)\n\
  163. \ -time display speed information \n\
  164. \ -noExit do not call System.exit(n) at end of compilation (n==0 if no error)\n\
  165. \ -repeat <n> repeat compilation process <n> times for perf analysis\n\
  166. \ @<file> read command line arguments from file\n\
  167. \ \n\
  168. \ -? -help print this help message\n\
  169. \ -v -version print compiler version\n\
  170. \ -showversion print compiler version and continue\n
  171. xoption.usage = {0} non-standard options:\n\
  172. \n\
  173. \t-XnoInline don't inline advice\n\
  174. \t-XlazyTjp create thisJoinPoint objects lazily\n\
  175. \t-Xreweavable create class files that can be subsequently rewoven\n\
  176. \t by AspectJ. Deprecated, this is now on by default.\n\
  177. \t-Xreweavable:compress deprecated, reweavable is now default.\n\
  178. \t-XnotReweavable create class files that can't be subsequently rewoven\n\
  179. \t by AspectJ.\n\
  180. \t-XserializableAspects allows aspects to implement serializable\n\
  181. \t-XterminateAfterCompilation compile classes then terminate before weaving\n\
  182. \t-XaddSerialVersionUID calculates and adds the serialVersionUID to any\n\
  183. \t serializable type woven by an aspect\n\
  184. \t-Xajruntimetarget:<level> allows code to be generated that targets\n\
  185. \t a 1.2 or a 1.5 level AspectJ runtime (default 1.5)\n\
  186. \t-XhasMember allow hasmethod() and hasfield type patterns in\n\
  187. \t declare parents and declare @type\n\
  188. \t-Xjoinpoints: supply a comma separated list of new joinpoints\n\
  189. \t that can be identified by pointcuts. Values are:\n\
  190. \t arrayconstruction, synchronization\n
  191. ## options not documented above (per ..ajdt.ajc.BuildArgParser.java):
  192. # -XincrementalFile, -XjavadocsInModel
  193. ###############################################################################
  194. # Copyright (c) 2000, 2004 IBM Corporation and others.
  195. # All rights reserved. This program and the accompanying materials
  196. # are made available under the terms of the Eclipse Public License v1.0
  197. # which accompanies this distribution, and is available at
  198. # http://www.eclipse.org/legal/epl-v10.html
  199. #
  200. # Contributors:
  201. # IBM Corporation - initial API and implementation
  202. ###############################################################################
  203. ### JavaBatchCompiler messages.
  204. ### compiler
  205. #compiler.name = Eclipse Java Compiler
  206. #compiler.version = 0.396
  207. #compiler.copyright = Copyright IBM Corp 2000, 2003. All rights reserved.
  208. ### scanning
  209. scanning.start = Collecting source files inside {0}
  210. ### progress
  211. progress.compiling = Compiling
  212. ### compile
  213. compile.repetition = [repetition {0}/{1}]
  214. compile.instantTime = [compiled {0} lines in {1} ms: {2} lines/s]
  215. compile.averageTime = [average, excluding min-max {0} lines in {1} ms: {2} lines/s]
  216. compile.totalTime = [total compilation time: {0}]
  217. compile.oneProblem = 1 problem ({0})
  218. compile.severalProblemsErrorsOrWarnings = {0} problems ({1})
  219. compile.severalProblemsErrorsAndWarnings = {0} problems ({1}, {2})
  220. compile.oneError = 1 error
  221. compile.severalErrors = {0} errors
  222. compile.oneWarning = 1 warning
  223. compile.severalWarnings = {0} warnings
  224. compile.oneClassFileGenerated = [1 .class file generated]
  225. compile.severalClassFilesGenerated = [{0} .class files generated]
  226. #compile.repetition = Repetition {0}/{1}
  227. #compile.instantTime = Compiled {0} lines in {1} ms ({2} lines/s)
  228. #compile.totalTime = Total compilation time: {0}
  229. #compile.oneProblem = 1 problem
  230. #compile.severalProblems = {0} problems
  231. #compile.oneError = 1 error
  232. #compile.severalErrors = {0} errors
  233. #compile.oneWarning = 1 warning
  234. #compile.severalWarnings = {0} warnings
  235. #compile.oneClassFileGenerated = 1 .class file generated
  236. #compile.severalClassFilesGenerated = {0} .class files generated
  237. ### configure
  238. configure.requiresJDK1.2orAbove = Need to use a JVM >= 1.2
  239. configure.duplicateLog = duplicate log specification: {0}
  240. configure.duplicateRepeat = duplicate repeat specification: {0}
  241. configure.duplicateCompliance = duplicate compliance setting specification: {0}
  242. configure.source = invalid source option, source is either ''1.3'' or ''1.4'': {0}
  243. configure.duplicateOutputPath = duplicate output path specification: {0}
  244. configure.duplicateBootClasspath = duplicate bootclasspath specification: {0}
  245. configure.invalidDebugOption = invalid debug option: {0}
  246. configure.invalidWarningConfiguration = invalid warning configuration: {0}
  247. configure.invalidWarning = invalid warning: {0}
  248. configure.invalidWarningOption = invalid warning option: {0}
  249. configure.targetJDK = target JDK should be comprised in between ''1.1'' and ''1.4'': {0}
  250. configure.incompatibleTargetForSource14 = ''1.4'' source mode requires ''-target 1.4'' : {0}
  251. configure.incompatibleComplianceForSource14 = ''1.4'' source mode requires ''-1.4'' compliance mode: {0}
  252. configure.incompatibleComplianceForTarget14 = ''1.4'' target mode requires ''-1.4'' compliance mode: {0}
  253. configure.incompatibleComplianceForTarget11 = ''1.1'' target mode requires ''-1.3'' compliance mode: {0}
  254. configure.incompatibleComplianceForTarget = Compliance level ''{0}'' is incompatible with target level ''{1}''. A compliance level ''{1}'' or better is required
  255. configure.repetition = repetition must be a positive integer: {0}
  256. configure.directoryNotExist = directory does not exist: {0}
  257. configure.IOError = i/o error : unable to retrieve .JAVA files in directory: {0}
  258. configure.noClasspath = no classpath defined, using default directory instead
  259. configure.incorrectClasspath = incorrect classpath: {0}
  260. configure.invalidexpansionargumentname = expansion argument file {0} doesn't exist or cannot be read
  261. configure.cannotOpenLog = cannot open .log file
  262. configure.unexpectedCustomEncoding = unexpected custom encoding specification: {0}[{1}]
  263. configure.unsupportedEncoding = unsupported encoding format: {0}
  264. configure.duplicateDefaultEncoding = duplicate default encoding format specification: {0}
  265. configure.invalidTaskTag ={0} is an invalid task tag
  266. ### requestor
  267. requestor.error = ERROR
  268. requestor.warning = WARNING
  269. requestor.in = in {0}
  270. requestor.notRetrieveErrorMessage = Cannot retrieve the error message for {0}
  271. ### unit
  272. unit.more = File {0} is specified more than once
  273. unit.missing = File {0} is missing
  274. ### output
  275. output.noClassFileCreated = No .class file created for file named {0} because of an IOException.
  276. ### miscellaneous
  277. misc.version = {0} ({1}) - {2} {3}