From b9421dc80af485591a9c50cc8921f912e0def11e Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 10:05:40 -0700 Subject: Removing sources to replace with download links instead. Change-Id: Ie28789a725051aec0d1b04dd291b7690a7898668 Signed-off-by: Ashlee Young --- .../manual/Types/extensionset.html | 83 ---------------------- 1 file changed, 83 deletions(-) delete mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Types/extensionset.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Types/extensionset.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Types/extensionset.html b/framework/src/ant/apache-ant-1.9.6/manual/Types/extensionset.html deleted file mode 100644 index f38c1ed1..00000000 --- a/framework/src/ant/apache-ant-1.9.6/manual/Types/extensionset.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - -ExtensionSet Type - - - -

ExtensionSet

-

Utility type that represents a set of Extensions.

-

Note that this type -works with extensions as defined by the "Optional Package" specification. - For more information about optional packages, see the document -Optional Package Versioning in the documentation bundle for your -Java2 Standard Edition package, in file -guide/extensions/versioning.html or online at - -Package Versioning documentation.

- -

Nested Elements

- -

extension

-

Extension object to add to set.

- -

fileset

-

FileSets all files contained - contained within set that are jars and implement an extension are added - to extension set.

- -

LibFileSet

-

All files contained contained within set that are jars and implement - an extension are added to extension set. However the extension information - may be modified by attributes of libfileset

- -

Examples

-
-<extension id="e1"
-    extensionName="MyExtensions"
-    specificationVersion="1.0"
-    specificationVendor="Peter Donald"
-    implementationVendorID="vv"
-    implementationVendor="Apache"
-    implementationVersion="2.0"
-    implementationURL="http://somewhere.com/myExt.jar"/>
-
-<libfileset id="lfs"
-               includeUrl="true"
-               includeImpl="false"
-               dir="tools/lib">
-  <include name="*.jar"/>
-</libfileset>
-
-<extensionSet id="exts">
-  <libfileset dir="lib">
-    <include name="*.jar"/>
-  </libfileset>
-  <libfileset refid="lfs"/>
-  <extension refid="e1"/>
-</extensionSet>
-
-
- - - - - - -- cgit 1.2.3-korg