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.

antstructure.html 1.3 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>Apache Ant User Manual</title>
  5. </head>
  6. <body>
  7. <h2><a name="antstructure">AntStructure</a></h2>
  8. <h3>Description</h3>
  9. <p>Generates a DTD for Ant buildfiles which contains information
  10. about all tasks currently known to Ant.</p>
  11. <p>Note that the DTD generated by this task is incomplete, you can
  12. always add XML entities using <a
  13. href="taskdef.html"><code>&lt;taskdef&gt;</code></a>. See <a
  14. href="http://www.sdv.fr/pages/casa/html/ant-dtd.en.html" target="_top">here</a> for
  15. a way to get around this problem.</p>
  16. <p>This task doesn't know about required attributes, all will be
  17. listed as <code>#IMPLIED</code>.</p>
  18. <h3>Parameters</h3>
  19. <table border="1" cellpadding="2" cellspacing="0">
  20. <tr>
  21. <td valign="top"><b>Attribute</b></td>
  22. <td valign="top"><b>Description</b></td>
  23. <td align="center" valign="top"><b>Required</b></td>
  24. </tr>
  25. <tr>
  26. <td valign="top">output</td>
  27. <td valign="top">file to write the DTD to.</td>
  28. <td valign="top" align="center">Yes</td>
  29. </tr>
  30. </table>
  31. <h3>Examples</h3>
  32. <blockquote><pre>
  33. &lt;antstructure output=&quot;project.dtd&quot;/&gt;
  34. </pre></blockquote>
  35. <hr><p align="center">Copyright &copy; 2000,2001 Apache Software Foundation. All rights
  36. Reserved.</p>
  37. </body>
  38. </html>