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

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