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 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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
  7. ## this next one superceded by above...
  8. ## configure.version = AspectJ Compiler 1.1
  9. configure.directoryNotExist = invalid option: {0}
  10. ## 3456789012345678901234567890123456789012345678901234567890123456789012345
  11. ### miscellaneous
  12. misc.usage = {compiler.name}\n\
  13. \n\
  14. \tUsage: <options> <source file | @argfile>..\n\
  15. \n\
  16. AspectJ-specific options:\n\
  17. \t-injars <jarList> use classes in <jarList> zip files as source\n\
  18. \t (<jarList> uses classpath delimiter)\n\
  19. \t-inpath <list> use classes in <list> as source\n\
  20. \t (<list> uses platform-specific path delimiter)\n\
  21. \t-aspectpath <list> weave aspects from <list> zip files into sources\n\
  22. \t (<list> uses classpath delimiter)\n\
  23. \t-outjar <file> put output classes in zip file <file>\n\
  24. \t-argfile <file> specify line-delimited list of source files\n\
  25. \t-incremental continuously-running compiler, needs -sourceroots\n\
  26. \t (reads stdin: enter to recompile and ''q'' to quit)\n\
  27. \t-sourceroots <dirs> compile all .aj and .java files in <dirs>\n\
  28. \t (<dirs> uses classpath delimiter)\n\
  29. \t-emacssym generate .ajesym symbol files for emacs support\n\
  30. \t-Xlint same as ''-Xlint:warning''\n\
  31. \t-Xlint:<level> set default level for crosscutting messages\n\
  32. \t (<level> may be ignore, warning, or error)\n\
  33. \t-Xlintfile <file> specify properties file to set per-message levels\n\
  34. \t (cf org/aspectj/weaver/XlintDefault.properties)\n\
  35. \n\
  36. Standard Eclipse compiler options:\n\
  37. \ Options enabled by default are prefixed with ''+''\n\
  38. \ \n\
  39. \ Classpath options:\n\
  40. \ -cp -classpath <directories and zip/jar files separated by ;>\n\
  41. \ specify location for application classes and sources\n\
  42. \ -bootclasspath <directories and zip/jar files separated by ;>\n\
  43. \ specify location for system classes\n\
  44. \ -d <dir> destination directory (if omitted, no directory is created)\n\
  45. \ -d none generate no .class files\n\
  46. \ -encoding <enc> specify custom encoding for all sources. Each file/directory can override it\n\
  47. \ when suffixed with ''[''<enc>'']'' (e.g. X.java[utf8])\n\
  48. \ \n\
  49. \ Compliance options:\n\
  50. \ -1.3 use 1.3 compliance level (implicit -source 1.3 -target 1.1)\n\
  51. \ -1.4 + use 1.4 compliance level (implicit -source 1.3 -target 1.2)\n\
  52. \ -source <version> set source level (1.3 or 1.4)\n\
  53. \ -target <version> set classfile target (1.1 to 1.4)\n\
  54. \ \n\
  55. \ Warning options:\n\
  56. \ -deprecation + deprecation outside deprecated code\n\
  57. \ -nowarn disable all warnings\n\
  58. \ -warn:none disable all warnings\n\
  59. \ -warn:<warnings separated by ,> enable exactly the listed warnings\n\
  60. \ -warn:+<warnings separated by ,> enable additional warnings\n\
  61. \ -warn:-<warnings separated by ,> disable specific warnings\n\
  62. \ allDeprecation deprecation including inside deprecated code\n\
  63. \ allJavadoc invalid or missing javadoc\n\
  64. \ assertIdentifier + ''assert'' used as identifier\n\
  65. \ charConcat + char[] in String concat\n\
  66. \ conditionAssign possible accidental boolean assignment\n\
  67. \ constructorName + method with constructor name\n\
  68. \ deprecation + deprecation outside deprecated code\n\
  69. \ emptyBlock undocumented empty block\n\
  70. \ fieldHiding field hiding another variable\n\
  71. \ finally + finally block not completing normally\n\
  72. \ indirectStatic indirect reference to static member\n\
  73. \ intfNonInherited + interface non-inherited method compatibility\n\
  74. \ javadoc invalid javadoc\n\
  75. \ localHiding local variable hiding another variable\n\
  76. \ maskedCatchBlock + hidden catch block\n\
  77. \ nls string literal lacking non-nls tag //$NON-NLS-<n>$\n\
  78. \ noEffectAssign + assignment without effect\n\
  79. \ pkgDefaultMethod + attempt to override package-default method\n\
  80. \ semicolon superfluous semicolon\n\
  81. \ unqualifiedField unqualified reference to field\n\
  82. \ unusedImport + unused import declaration\n\
  83. \ unusedLocal unread local variable\n\
  84. \ unusedPrivate unused private member declaration\n\
  85. \ unusedThrown unused declared thrown exception\n\
  86. \ uselessTypeCheck unnecessary cast/instanceof operation\n\
  87. \ specialParamHiding constructor or setter parameter hiding another field\n\
  88. \ staticReceiver + non-static reference to static member\n\
  89. \ syntheticAccess synthetic access for innerclass\n\
  90. \ tasks(<tags separated by |>) tasks identified by tags inside comments\n\
  91. \ \n\
  92. \ Debug options:\n\
  93. \ -g[:lines,vars,source] custom debug info\n\
  94. \ -g:lines,source + both lines table and source debug info\n\
  95. \ -g all debug info\n\
  96. \ -g:none no debug info\n\
  97. \ -preserveAllLocals preserve unused local vars for debug purpose\n\
  98. \ \n\
  99. \ Advanced options:\n\
  100. \ -log <file> log to a file\n\
  101. \ -proceedOnError do not stop at first error, dumping class files with problem methods\n\
  102. \ -verbose enable verbose output\n\
  103. \ -referenceInfo compute reference info\n\
  104. \ -progress show progress (only in -log mode)\n\
  105. \ -time display speed information \n\
  106. \ -noExit do not call System.exit(n) at end of compilation (n==0 if no error)\n\
  107. \ -repeat <n> repeat compilation process <n> times for perf analysis\n\
  108. \ @<file> read command line arguments from file\n\
  109. \ \n\
  110. \ -? -help print this help message\n\
  111. \ -v -version print compiler version\n\
  112. \ -showversion print compiler version and continue\n
  113. ## options not documented above (per ..ajdt.ajc.BuildArgParser.java):
  114. # -XincrementalFile, -XnoWeave, -XserializableAspects, -XnoInline
  115. ###############################################################################
  116. # Copyright (c) 2000, 2004 IBM Corporation and others.
  117. # All rights reserved. This program and the accompanying materials
  118. # are made available under the terms of the Common Public License v1.0
  119. # which accompanies this distribution, and is available at
  120. # http://www.eclipse.org/legal/cpl-v10.html
  121. #
  122. # Contributors:
  123. # IBM Corporation - initial API and implementation
  124. ###############################################################################
  125. ### JavaBatchCompiler messages.
  126. ### compiler
  127. #compiler.name = Eclipse Java Compiler
  128. #compiler.version = 0.396
  129. #compiler.copyright = Copyright IBM Corp 2000, 2003. All rights reserved.
  130. ### scanning
  131. scanning.start = Collecting source files inside {0}
  132. ### progress
  133. progress.compiling = Compiling
  134. ### compile
  135. compile.repetition = Repetition {0}/{1}
  136. compile.instantTime = Compiled {0} lines in {1} ms ({2} lines/s)
  137. compile.totalTime = Total compilation time: {0}
  138. compile.oneProblem = 1 problem
  139. compile.severalProblems = {0} problems
  140. compile.oneError = 1 error
  141. compile.severalErrors = {0} errors
  142. compile.oneWarning = 1 warning
  143. compile.severalWarnings = {0} warnings
  144. compile.oneClassFileGenerated = 1 .class file generated
  145. compile.severalClassFilesGenerated = {0} .class files generated
  146. ### configure
  147. configure.requiresJDK1.2orAbove = Need to use a JVM >= 1.2
  148. configure.duplicateLog = duplicate log specification: {0}
  149. configure.duplicateRepeat = duplicate repeat specification: {0}
  150. configure.duplicateCompliance = duplicate compliance setting specification: {0}
  151. configure.source = invalid source option, source is either ''1.3'' or ''1.4'': {0}
  152. configure.duplicateOutputPath = duplicate output path specification: {0}
  153. configure.duplicateBootClasspath = duplicate bootclasspath specification: {0}
  154. configure.invalidDebugOption = invalid debug option: {0}
  155. configure.invalidWarningConfiguration = invalid warning configuration: {0}
  156. configure.invalidWarning = invalid warning: {0}
  157. configure.invalidWarningOption = invalid warning option: {0}
  158. configure.targetJDK = target JDK should be comprised in between ''1.1'' and ''1.4'': {0}
  159. configure.incompatibleTargetForSource14 = ''1.4'' source mode requires ''-target 1.4'' : {0}
  160. configure.incompatibleComplianceForSource14 = ''1.4'' source mode requires ''-1.4'' compliance mode: {0}
  161. configure.incompatibleComplianceForTarget14 = ''1.4'' target mode requires ''-1.4'' compliance mode: {0}
  162. configure.incompatibleComplianceForTarget11 = ''1.1'' target mode requires ''-1.3'' compliance mode: {0}
  163. configure.repetition = repetition must be a positive integer: {0}
  164. configure.directoryNotExist = directory does not exist: {0}
  165. configure.IOError = i/o error : unable to retrieve .JAVA files in directory: {0}
  166. configure.noClasspath = no classpath defined, using default directory instead
  167. configure.incorrectClasspath = incorrect classpath: {0}
  168. configure.invalidexpansionargumentname = expansion argument file {0} doesn't exist or cannot be read
  169. configure.cannotOpenLog = cannot open .log file
  170. configure.unexpectedCustomEncoding = unexpected custom encoding specification: {0}[{1}]
  171. configure.unsupportedEncoding = unsupported encoding format: {0}
  172. configure.duplicateDefaultEncoding = duplicate default encoding format specification: {0}
  173. configure.invalidTaskTag ={0} is an invalid task tag
  174. ### requestor
  175. requestor.error = ERROR
  176. requestor.warning = WARNING
  177. requestor.in = in {0}
  178. requestor.notRetrieveErrorMessage = Cannot retrieve the error message for {0}
  179. ### unit
  180. unit.more = File {0} is specified more than once
  181. unit.missing = File {0} is missing
  182. ### output
  183. output.noClassFileCreated = No .class file created for file named {0} because of an IOException.
  184. ### miscellaneous
  185. misc.version = {compiler.name}