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

javac.html 21 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>Javac Task</title>
  5. </head>
  6. <body>
  7. <h2><a name="javac">Javac</a></h2>
  8. <h3>Description</h3>
  9. <p>Compiles a Java source tree.</p>
  10. <p>The source and destination directory will be recursively scanned for Java
  11. source files to compile. Only Java files that have no corresponding
  12. <code>.class</code> file
  13. or where the class file is older than the
  14. <code>.java</code> file will be compiled.</p>
  15. <p>Note: Ant uses only the names of the source and class files to find
  16. the classes that need a rebuild. It will not scan the source and therefore
  17. will have no knowledge about nested classes, classes that are named different
  18. from the source file, and so on. See the
  19. <a href="../OptionalTasks/depend.html"><code>&lt;depend&gt;</code></a> task
  20. for dependency checking based on other than just
  21. existence/modification times.
  22. <p>When the source files are part of a package, the directory structure of
  23. the source tree should follow the package
  24. hierarchy.</p>
  25. <p>It is possible to refine the set of files that are being compiled.
  26. This can be done with the <code>includes</code>, <code>includesfile</code>,
  27. <code>excludes</code>, <code>excludesfile</code>,
  28. and <code>defaultexcludes</code>
  29. attributes. With the <code>includes</code> or
  30. <code>includesfile</code> attribute, you specify the files you want to
  31. have included.
  32. The <code>exclude</code> or <code>excludesfile</code> attribute is used
  33. to specify
  34. the files you want to have excluded. In both cases, the list of files
  35. can be specified by either the filename, relative to the directory(s) specified
  36. in the <code>srcdir</code> attribute or nested <src> element, or by using
  37. wildcard patterns. See the section on
  38. <a href="../dirtasks.html#directorybasedtasks">directory-based tasks</a>,
  39. for information on how the
  40. inclusion/exclusion of files works, and how to write wildcard patterns.</p>
  41. <p>It is possible to use different compilers. This can be specified by
  42. either setting the global <code>build.compiler</code> property, which will
  43. affect all <code>&lt;javac&gt;</code> tasks throughout the build, or by
  44. setting the <code>compiler</code> attribute, specific to the current
  45. <code>&lt;javac&gt;</code> task.
  46. <a name="compilervalues">Valid values for either the
  47. <code>build.compiler</code> property or the <code>compiler</code>
  48. attribute are:</p>
  49. <ul>
  50. <li><code>classic</code> (the standard compiler of JDK 1.1/1.2) &ndash;
  51. <code>javac1.1</code> and
  52. <code>javac1.2</code> can be used as aliases.</li>
  53. <li><code>modern</code> (the standard compiler of JDK 1.3/1.4) &ndash;
  54. <code>javac1.3</code> and
  55. <code>javac1.4</code> can be used as aliases.</li>
  56. <li><code>jikes</code> (the <a
  57. href="http://oss.software.ibm.com/developerworks/opensource/jikes/project" target="_top">Jikes</a>
  58. compiler).</li>
  59. <li><code>jvc</code> (the Command-Line Compiler from Microsoft's SDK
  60. for Java / Visual J++) &ndash; <code>microsoft</code> can be used
  61. as an alias.</li>
  62. <li><code>kjc</code> (the <a href="http://www.dms.at/kopi/" target="_top">kopi</a>
  63. compiler).</li>
  64. <li><code>gcj</code> (the gcj compiler from gcc).</li>
  65. <li><code>sj</code> (Symantec java compiler) &ndash;
  66. <code>symantec</code> can be used as an alias.</li>
  67. <li><code>extJavac</code> (run either modern or classic in a JVM of
  68. its own).</li>
  69. </ul>
  70. </a>
  71. <p>For JDK 1.1/1.2, <code>classic</code> is the default.
  72. For JDK 1.3/1.4, <code>modern</code> is the default.
  73. If you wish to use a different compiler interface than those
  74. supplied, you can write a class that implements the CompilerAdapter interface
  75. (<code>package org.apache.tools.ant.taskdefs.compilers</code>). Supply the full
  76. classname in the <code>build.compiler</code> property or the
  77. <code>compiler</code> attribute.
  78. </p>
  79. <p>The fork attribute overrides the <code>build.compiler</code> property
  80. or <code>compiler</code> attribute setting and
  81. expects a JDK1.1 or higher to be set in <code>JAVA_HOME</code>.
  82. </p>
  83. <p>This task will drop all entries that point to non-existent
  84. files/directories from the classpath it passes to the compiler.</p>
  85. <p><strong>Windows Note:</strong>When the modern compiler is used
  86. in unforked mode on Windows, it locks up the files present in the
  87. classpath of the <code>&lt;javac&gt;</code> task, and does not release them.
  88. The side effect of this is that you will not be able to delete or move
  89. those files later on in the build. The workaround is to fork when
  90. invoking the compiler.</p>
  91. </p>
  92. <h3>Parameters</h3>
  93. <table border="1" cellpadding="2" cellspacing="0">
  94. <tr>
  95. <td valign="top"><b>Attribute</b></td>
  96. <td valign="top"><b>Description</b></td>
  97. <td align="center" valign="top"><b>Required</b></td>
  98. </tr>
  99. <tr>
  100. <td valign="top">srcdir</td>
  101. <td valign="top">Location of the java files. (See the
  102. <a href="#srcdirnote">Note</a> below.)</td>
  103. <td align="center" valign="top">Yes, unless nested <code>&lt;src&gt;</code> elements are present.</td>
  104. </tr>
  105. <tr>
  106. <td valign="top">destdir</td>
  107. <td valign="top">Location to store the class files.</td>
  108. <td align="center" valign="top">No</td>
  109. </tr>
  110. <tr>
  111. <td valign="top">includes</td>
  112. <td valign="top">Comma-separated list of files (may be specified using
  113. wildcard patterns) that must be
  114. included; all <code>.java</code> files are included when omitted.</td>
  115. <td valign="top" align="center">No</td>
  116. </tr>
  117. <tr>
  118. <td valign="top">includesfile</td>
  119. <td valign="top">The name of a file that contains a list of files to
  120. include (may be specified using wildcard patterns).</td>
  121. <td valign="top" align="center">No</td>
  122. </tr>
  123. <tr>
  124. <td valign="top">excludes</td>
  125. <td valign="top">Comma-separated list of files (may be specified using
  126. wildcard patterns) that must be excluded; no files (except default
  127. excludes) are excluded when omitted.</td>
  128. <td valign="top" align="center">No</td>
  129. </tr>
  130. <tr>
  131. <td valign="top">excludesfile</td>
  132. <td valign="top">The name of a file that contains a list of files to
  133. exclude (may be specified using wildcard patterns).</td>
  134. <td valign="top" align="center">No</td>
  135. </tr>
  136. <tr>
  137. <td valign="top">classpath</td>
  138. <td valign="top">The classpath to use.</td>
  139. <td align="center" valign="top">No</td>
  140. </tr>
  141. <tr>
  142. <td valign="top">sourcepath</td>
  143. <td valign="top">The sourcepath to use; defaults to the value of the srcdir attribute (or nested <code>&lt;src&gt;</code> elements).
  144. To suppress the sourcepath switch, use <code>sourcepath=&quot;&quot;</code>.</td>
  145. <td align="center" valign="top">No</td>
  146. </tr>
  147. <tr>
  148. <td valign="top">bootclasspath</td>
  149. <td valign="top">Location of bootstrap class files.</td>
  150. <td align="center" valign="top">No</td>
  151. </tr>
  152. <tr>
  153. <td valign="top">classpathref</td>
  154. <td valign="top">The classpath to use, given as a
  155. <a href="../using.html#references">reference</a> to a path defined elsewhere.</td>
  156. <td align="center" valign="top">No</td>
  157. </tr>
  158. <tr>
  159. <td valign="top">sourcepathref</td>
  160. <td valign="top">The sourcepath to use, given as a
  161. <a href="../using.html#references">reference</a> to a path defined elsewhere.</td>
  162. <td align="center" valign="top">No</td>
  163. </tr>
  164. <tr>
  165. <td valign="top">bootclasspathref</td>
  166. <td valign="top">Location of bootstrap class files, given as a
  167. <a href="../using.html#references">reference</a> to a path defined elsewhere.</td>
  168. <td align="center" valign="top">No</td>
  169. </tr>
  170. <tr>
  171. <td valign="top">extdirs</td>
  172. <td valign="top">Location of installed extensions.</td>
  173. <td align="center" valign="top">No</td>
  174. </tr>
  175. <tr>
  176. <td valign="top">encoding</td>
  177. <td valign="top">Encoding of source files. (Note: gcj doesn't support
  178. this option yet.)</td>
  179. <td align="center" valign="top">No</td>
  180. </tr>
  181. <tr>
  182. <td valign="top">nowarn</td>
  183. <td valign="top">Indicates whether the <code>-nowarn</code> switch
  184. should be passed to the compiler; defaults to <code>off</code>.</td>
  185. <td align="center" valign="top">No</td>
  186. </tr>
  187. <tr>
  188. <td valign="top">debug</td>
  189. <td valign="top">Indicates whether source should be compiled with debug
  190. information; defaults to <code>off</code>.</td>
  191. <td align="center" valign="top">No</td>
  192. </tr>
  193. <tr>
  194. <td valign="top">debuglevel</td>
  195. <td valign="top">Keyword list to be appended to the <code>-g</code>
  196. command-line switch. This will be ignored by all implementations except
  197. <code>modern</code> and <code>classic(ver &gt;= 1.2)</code>.
  198. Legal values are <code>none</code> or a comma-separated list of the
  199. following keywords:
  200. <code>lines</code>, <code>vars</code>, and <code>source</code>.
  201. If <code>debuglevel</code> is not specified, by default,
  202. <code>:none</code> will be
  203. appended to <code>-g</code>. If <code>debug</code> is not turned on,
  204. this attribute will be ignored.
  205. </td>
  206. <td align="center" valign="top">No</td>
  207. </tr>
  208. <tr>
  209. <td valign="top">optimize</td>
  210. <td valign="top">Indicates whether source should be compiled with
  211. optimization; defaults to <code>off</code>.</td>
  212. <td align="center" valign="top">No</td>
  213. </tr>
  214. <tr>
  215. <td valign="top">deprecation</td>
  216. <td valign="top">Indicates whether source should be compiled with
  217. deprecation information; defaults to <code>off</code>.</td>
  218. <td align="center" valign="top">No</td>
  219. </tr>
  220. <tr>
  221. <td valign="top">target</td>
  222. <td valign="top">Generate class files for specific VM version (e.g.,
  223. <code>1.1</code> or <code>1.2</code>).</td>
  224. <td align="center" valign="top">No</td>
  225. </tr>
  226. <tr>
  227. <td valign="top">verbose</td>
  228. <td valign="top">Asks the compiler for verbose output.</td>
  229. <td align="center" valign="top">No</td>
  230. </tr>
  231. <tr>
  232. <td valign="top">depend</td> <td valign="top">Enables dependency-tracking
  233. for compilers that support this (<code>jikes</code> and
  234. <code>classic</code>).</td>
  235. <td align="center" valign="top">No</td>
  236. </tr>
  237. <tr>
  238. <td valign="top">includeAntRuntime</td>
  239. <td valign="top">Whether to include the Ant run-time libraries in the
  240. classpath; defaults to <code>yes</code>.</td>
  241. <td align="center" valign="top">No</td>
  242. </tr>
  243. <tr>
  244. <td valign="top">includeJavaRuntime</td>
  245. <td valign="top">Whether to include the default run-time
  246. libraries from the executing VM in the classpath;
  247. defaults to <code>yes</code>.</td>
  248. <td align="center" valign="top">No</td>
  249. </tr>
  250. <tr>
  251. <td valign="top">fork</td>
  252. <td valign="top">Whether to execute <code>javac</code> using the
  253. JDK compiler externally; defaults to <code>no</code>. You can also
  254. give a complete path to the <code>javac</code> executable to use
  255. instead of <code>yes</code>, which would run the compiler of the Java
  256. version that is currently running Ant.</td>
  257. <td align="center" valign="top">No</td>
  258. </tr>
  259. <tr>
  260. <td valign="top">memoryInitialSize</td>
  261. <td valign="top">The initial size of the memory for the underlying VM,
  262. if <code>javac</code> is run externally; ignored otherwise. Defaults
  263. to the standard VM memory setting.
  264. (Examples: <code>83886080</code>, <code>81920k</code>, or
  265. <code>80m</code>)</td>
  266. <td align="center" valign="top">No</td>
  267. </tr>
  268. <tr>
  269. <td valign="top">memoryMaximumSize</td>
  270. <td valign="top">The maximum size of the memory for the underlying VM,
  271. if <code>javac</code> is run externally; ignored otherwise. Defaults
  272. to the standard VM memory setting.
  273. (Examples: <code>83886080</code>, <code>81920k</code>, or
  274. <code>80m</code>)</td>
  275. <td align="center" valign="top">No</td>
  276. </tr>
  277. <tr>
  278. <td valign="top">failonerror</td> <td valign="top">
  279. Indicates whether the build will continue even if there are compilation errors; defaults to <code>true</code>.
  280. </td>
  281. <td align="center" valign="top">No</td>
  282. </tr>
  283. <tr>
  284. <td valign="top">source</td>
  285. <td valign="top">Value of the <code>-source</code> command-line
  286. switch; will be ignored by all implementations except
  287. <code>modern</code>. Legal values are <code>1.3</code> and
  288. <code>1.4</code> &ndash; by default, no <code>-source</code> argument
  289. will be used at all.</td>
  290. <td align="center" valign="top">No</td>
  291. </tr>
  292. <tr>
  293. <td valign="top">compiler</td>
  294. <td valign="top">The compiler implementation to use.
  295. If this attribute is not set, the value of the
  296. <code>build.compiler</code> property, if set, will be used.
  297. Otherwise, the default compiler for the current VM will be used.
  298. (See the above <a href="#compilervalues">list</a> of valid
  299. compilers.)</td>
  300. <td align="center" valign="top">No</td>
  301. </tr>
  302. <tr>
  303. <td valign="top">listfiles</td>
  304. <td valign="top">Indicates whether the source files to be compiled will
  305. be listed; defaults to <code>no</code>.</td>
  306. <td align="center" valign="top">No</td>
  307. </tr>
  308. </table>
  309. <h3>Parameters specified as nested elements</h3>
  310. <p>This task forms an implicit <a href="../CoreTypes/fileset.html">FileSet</a> and
  311. supports all attributes of <code>&lt;fileset&gt;</code>
  312. (<code>dir</code> becomes <code>srcdir</code>) as well as the nested
  313. <code>&lt;include&gt;</code>, <code>&lt;exclude&gt;</code> and
  314. <code>&lt;patternset&gt;</code> elements.</p>
  315. <h4><code>src</code>, <code>classpath</code>, <code>sourcepath</code>,
  316. <code>bootclasspath</code> and <code>extdirs</code></h4>
  317. <p><code>&lt;javac&gt;</code>'s <code>srcdir</code>, <code>classpath</code>,
  318. <code>sourcepath</code>, <code>bootclasspath</code>, and
  319. <code>extdirs</code> attributes are
  320. <a href="../using.html#path">path-like structures</a>
  321. and can also be set via nested
  322. <code>&lt;src&gt;</code>,
  323. <code>&lt;classpath&gt;</code>,
  324. <code>&lt;sourcepath&gt;</code>,
  325. <code>&lt;bootclasspath&gt;</code> and
  326. <code>&lt;extdirs&gt;</code> elements, respectively.</p>
  327. <h4>compilerarg</h4>
  328. <p>You can specify additional command line arguments for the compiler
  329. with nested <code>&lt;compilerarg&gt;</code> elements. These elements
  330. are specified like <a href="../using.html#arg">Command-line
  331. Arguments</a> but have an additional attribute that can be used to
  332. enable arguments only if a given compiler implementation will be
  333. used.</p>
  334. <table border="1" cellpadding="2" cellspacing="0">
  335. <tr>
  336. <td width="12%" valign="top"><b>Attribute</b></td>
  337. <td width="78%" valign="top"><b>Description</b></td>
  338. <td width="10%" valign="top"><b>Required</b></td>
  339. </tr>
  340. <tr>
  341. <td valign="top">value</td>
  342. <td align="center" rowspan="4">See
  343. <a href="../using.html#arg">Command-line Arguments</a>.</td>
  344. <td align="center" rowspan="4">Exactly one of these.</td>
  345. </tr>
  346. <tr>
  347. <td valign="top">line</td>
  348. </tr>
  349. <tr>
  350. <td valign="top">file</td>
  351. </tr>
  352. <tr>
  353. <td valign="top">path</td>
  354. </tr>
  355. <tr>
  356. <td valign="top">implementation</td>
  357. <td>Only pass the specified argument if the chosen
  358. implementation matches the value of this attribute.
  359. Legal values are the
  360. same as those in the above <a href="#compilervalues">list</a> of valid
  361. compilers.)</td>
  362. <td align="center">No</td>
  363. </tr>
  364. </table>
  365. <h3>Examples</h3>
  366. <pre> &lt;javac srcdir=&quot;${src}&quot;
  367. destdir=&quot;${build}&quot;
  368. classpath=&quot;xyz.jar&quot;
  369. debug=&quot;on&quot;
  370. /&gt;</pre>
  371. <p>compiles all <code>.java</code> files under the <code>${src}</code>
  372. directory, and stores
  373. the <code>.class</code> files in the <code>${build}</code> directory.
  374. The classpath used includes <code>xyz.jar</code>, and compiling with
  375. debug information is on.</p>
  376. <pre> &lt;javac srcdir=&quot;${src}&quot;
  377. destdir=&quot;${build}&quot;
  378. fork=&quot;true&quot;
  379. /&gt;</pre>
  380. <p>compiles all <code>.java</code> files under the <code>${src}</code>
  381. directory, and stores the <code>.class</code> files in the
  382. <code>${build}</code> directory. This will fork off the javac
  383. compiler using the default <code>javac</code> executable.</p>
  384. <pre> &lt;javac srcdir=&quot;${src}&quot;
  385. destdir=&quot;${build}&quot;
  386. fork=&quot;java$$javac.exe&quot;
  387. /&gt;</pre>
  388. <p>compiles all <code>.java</code> files under the <code>${src}</code>
  389. directory, and stores the <code>.class</code> files in the
  390. <code>${build}</code> directory. This will fork off the javac
  391. compiler, using the executable named <code>java$javac.exe</code>. Note
  392. that the <code>$</code> sign needs to be escaped by a second one.</p>
  393. <pre> &lt;javac srcdir=&quot;${src}&quot;
  394. destdir=&quot;${build}&quot;
  395. includes=&quot;mypackage/p1/**,mypackage/p2/**&quot;
  396. excludes=&quot;mypackage/p1/testpackage/**&quot;
  397. classpath=&quot;xyz.jar&quot;
  398. debug=&quot;on&quot;
  399. /&gt;</pre>
  400. <p>compiles <code>.java</code> files under the <code>${src}</code>
  401. directory, and stores the
  402. <code>.class</code> files in the <code>${build}</code> directory.
  403. The classpath used includes <code>xyz.jar</code>, and debug information is on.
  404. Only files under <code>mypackage/p1</code> and <code>mypackage/p2</code> are
  405. used. All files in and below the <code>mypackage/p1/testpackage</code>
  406. directory are excluded from compilation.</p>
  407. <pre> &lt;javac srcdir=&quot;${src}:${src2}&quot;
  408. destdir=&quot;${build}&quot;
  409. includes=&quot;mypackage/p1/**,mypackage/p2/**&quot;
  410. excludes=&quot;mypackage/p1/testpackage/**&quot;
  411. classpath=&quot;xyz.jar&quot;
  412. debug=&quot;on&quot;
  413. /&gt;</pre>
  414. <p>is the same as the previous example, with the addition of a second
  415. source path, defined by
  416. the property <code>src2</code>. This can also be represented using nested
  417. <code>&lt;src&gt;</code> elements as follows:</p>
  418. <pre> &lt;javac destdir=&quot;${build}&quot;
  419. classpath=&quot;xyz.jar&quot;
  420. debug=&quot;on&quot;&gt;
  421. &lt;src path=&quot;${src}&quot;/&gt;
  422. &lt;src path=&quot;${src2}&quot;/&gt;
  423. &lt;include name=&quot;mypackage/p1/**&quot;/&gt;
  424. &lt;include name=&quot;mypackage/p2/**&quot;/&gt;
  425. &lt;exclude name=&quot;mypackage/p1/testpackage/**&quot;/&gt;
  426. &lt;/javac&gt;</pre>
  427. <p><a name="srcdirnote"><b>Note:</b></a>
  428. If you wish to compile only source files located in certain packages below a
  429. common root, use the <code>include</code>/<code>exclude</code> attributes
  430. or <code>&lt;include&gt;</code>/<code>&lt;exclude&gt;</code> nested elements
  431. to filter for these packages. Do not include part of your package structure
  432. in the <code>srcdir</code> attribute
  433. (or nested <code>&lt;src&gt;</code> elements), or Ant will recompile your
  434. source files every time you run your compile target. See the
  435. <a href="http://jakarta.apache.org/ant/faq.html#always-recompiles">Ant FAQ</a>
  436. for additional information.</p>
  437. <p><b>Note:</b> If you are using Ant on Windows and a new DOS window pops up
  438. for every use of an external compiler, this may be a problem of the JDK you are
  439. using. This problem may occur with all JDKs &lt; 1.2.</p>
  440. <h3>Jikes Notes</h3>
  441. Jikes supports some extra options, which can be set be defining
  442. the properties shown below prior to invoking the task. The setting
  443. for each property will be in affect for all <code>&lt;javac&gt;</code>
  444. tasks throughout the build.
  445. The Ant developers are aware that
  446. this is ugly and inflexible &ndash; expect a better solution in the future.
  447. All the options are boolean, and must be set to <code>true</code> or
  448. <code>yes</code> to be
  449. interpreted as anything other than false. By default,
  450. <code>build.compiler.warnings</code> is <code>true</code>,
  451. while all others are <code>false</code>.</p>
  452. <table border="1" cellpadding="2" cellspacing="0">
  453. <tr>
  454. <td valign="top"><b>Property</b></td>
  455. <td valign="top"><b>Description</b></td>
  456. <td align="center" valign="top"><b>Default</b></td>
  457. </tr>
  458. <tr>
  459. <td valign="top">
  460. build.compiler.emacs
  461. </td>
  462. <td valign="top">
  463. Enable emacs-compatible error messages.
  464. </td>
  465. <td valign="top">
  466. <code>false</code>
  467. </td>
  468. </tr>
  469. <tr>
  470. <td valign="top">
  471. build.compiler.fulldepend
  472. </td>
  473. <td valign="top">
  474. Enable full dependency checking; see<br>
  475. the <code>+F</code> switch in the Jikes manual.
  476. </td>
  477. <td valign="top">
  478. <code>false</code>
  479. </td>
  480. </tr>
  481. <tr>
  482. <td valign="top">
  483. build.compiler.pedantic
  484. </td>
  485. <td valign="top">
  486. Enable pedantic warnings.
  487. </td>
  488. <td valign="top">
  489. <code>false</code>
  490. </td>
  491. </tr>
  492. <tr>
  493. <td valign="top">
  494. build.compiler.warnings<br>
  495. <strong>Deprecated</strong>. Use
  496. <code>&lt;javac&gt;</code>'s <code>nowarn</code>
  497. attribute instead.
  498. </td>
  499. <td valign="top">
  500. Don't disable warning messages.
  501. </td>
  502. <td valign="top">
  503. <code>true</code>
  504. </td>
  505. </tr>
  506. </table>
  507. </p>
  508. <hr>
  509. <p align="center">Copyright &copy; 2001-2002 Apache Software Foundation.
  510. All rights Reserved.</p>
  511. </body>
  512. </html>