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 2.0 KiB

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