source: other-projects/trunk/realistic-books/packages/AntInstaller/web/manual1.7.0/manual/OptionalTasks/jarlib-display.html@ 19253

Last change on this file since 19253 was 19253, checked in by davidb, 15 years ago

Establishing a source code repository for Veronica's Realistic Book's software

File size: 2.7 KB
Line 
1<!--
2 Licensed to the Apache Software Foundation (ASF) under one or more
3 contributor license agreements. See the NOTICE file distributed with
4 this work for additional information regarding copyright ownership.
5 The ASF licenses this file to You under the Apache License, Version 2.0
6 (the "License"); you may not use this file except in compliance with
7 the License. You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17<html>
18
19<head>
20<meta http-equiv="Content-Language" content="en-us">
21<link rel="stylesheet" type="text/css" href="../stylesheets/style.css">
22<title>jarlib-display Task</title>
23</head>
24
25<body>
26
27<h2><a name="jarlib-display">jarlib-display</a></h2>
28<h3>Description</h3>
29<p>Display the "Optional Package" and "Package Specification" information
30 contained within the specified jars.</p>
31
32<p>Note that this task
33works with extensions as defined by the "Optional Package" specification.
34 For more information about optional packages, see the document
35<em>Optional Package Versioning</em> in the documentation bundle for your
36Java2 Standard Edition package, in file
37<code>guide/extensions/versioning.html</code> or online at
38<a href="http://java.sun.com/j2se/1.3/docs/guide/extensions/versioning.html">
39http://java.sun.com/j2se/1.3/docs/guide/extensions/versioning.html</a>.</p>
40<p>See the Extension and ExtensionSet documentation for further details</p>
41
42<h3>Parameters</h3>
43<table border="1" cellpadding="2" cellspacing="0">
44 <tr>
45 <td valign="top"><b>Attribute</b></td>
46 <td valign="top"><b>Description</b></td>
47 <td align="center" valign="top"><b>Required</b></td>
48 </tr>
49 <tr>
50 <td valign="top">file</td>
51 <td valign="top">The file to display extension information about.</td>
52 <td valign="top" align="center">No, but one of file or fileset must be
53 present.</td>
54 </tr>
55</table>
56<h3>Parameters specified as nested elements</h3>
57
58<h4>fileset</h4>
59 <p><a href="../CoreTypes/fileset.html">FileSet</a>s contain list of files to
60 display Extension information about.</p>
61
62<h3>Examples</h3>
63<p><b>Display Extension info for a single file</b></p>
64<pre>
65 &lt;jarlib-display file=&quot;myfile.jar&quot;&gt;
66</pre>
67
68<p><b>Display Extension info for a fileset</b></p>
69<pre>
70 &lt;jarlib-display&gt;
71 &lt;fileset dir="lib"&gt;
72 &lt;include name="*.jar"/&gt;
73 &lt;/fileset&gt;
74 &lt;/jarlib-display&gt;
75</pre>
76
77
78
79</body>
80</html>
81
Note: See TracBrowser for help on using the repository browser.