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.

jarlib-display.html 1.9 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>jarlib-display Task</title>
  5. </head>
  6. <body>
  7. <h2><a name="jarlib-display">jarlib-display</a></h2>
  8. <h3>Description</h3>
  9. <p>Display the "Optional Package" and "Package Specification" information
  10. contained within the specified jars.</p>
  11. <p>Note that this task
  12. works with extensions as defined by the "Optional Package" specification.
  13. For more information about optional packages, see the document
  14. <em>Optional Package Versioning</em> in the documentation bundle for your
  15. Java2 Standard Edition package, in file
  16. <code>guide/extensions/versioning.html</code> or online at
  17. <a href="http://java.sun.com/j2se/1.3/docs/guide/extensions/versioning.html">
  18. http://java.sun.com/j2se/1.3/docs/guide/extensions/versioning.html</a>.</p>
  19. <p>See the Extension and ExtensionSet documentation for further details</p>
  20. <h3>Parameters</h3>
  21. <table border="1" cellpadding="2" cellspacing="0">
  22. <tr>
  23. <td valign="top"><b>Attribute</b></td>
  24. <td valign="top"><b>Description</b></td>
  25. <td align="center" valign="top"><b>Required</b></td>
  26. </tr>
  27. <tr>
  28. <td valign="top">file</td>
  29. <td valign="top">The file to display extension information about.</td>
  30. <td valign="top" align="center">No, but one of file or fileset must be
  31. present.</td>
  32. </tr>
  33. </table>
  34. <h3>Parameters specified as nested elements</h3>
  35. <h4>fileset</h4>
  36. <p><a href="../CoreTypes/fileset.html">FileSet</a>s contain list of files to
  37. display Extension information about.</p>
  38. <h3>Examples</h3>
  39. <p><b>Display Extension info for a single file</b></p>
  40. <pre>
  41. &lt;jarlib-display file=&quot;myfile.jar&quot;&gt;
  42. </pre>
  43. <p><b>Display Extension info for a fileset</b></p>
  44. <pre>
  45. &lt;jarlib-display&gt;
  46. &lt;fileset dir="lib"&gt;
  47. &lt;include name="*.jar"/&gt;
  48. &lt;/fileset&gt;
  49. &lt;/jarlib-display&gt;
  50. </pre>
  51. <hr><p align="center">Copyright &copy; 2002 Apache Software Foundation.
  52. All rights Reserved.</p>
  53. </body>
  54. </html>