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 --- .../ant/apache-ant-1.9.6/manual/Tasks/augment.html | 83 ---------------------- 1 file changed, 83 deletions(-) delete mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Tasks/augment.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Tasks/augment.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/augment.html b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/augment.html deleted file mode 100644 index 305e39a8..00000000 --- a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/augment.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - -Augment Task - - - - -

Augment

- -

Description

-

Modify an existing reference by adding nested elements or (re-)assigning properties -mapped as XML attributes. This is an unusual task that makes use of Ant's internal -processing mechanisms to reload a previously declared reference by means of the 'id' -attribute, then treats the declared augment element as though it were the -original element. -Since Apache Ant 1.8.1

- -

Parameters

- - - - - - - - - - - -
AttributeDescriptionRequired
idThe id of the reference to augment. If no such reference has - been declared a BuildException is generated.Yes
-

-Additional permissible attributes are dependent on the reference to be modified. -

- -

Parameters specified as nested elements

- -

-Permissible nested elements are dependent on the reference to be modified. -

- -

Examples

- -Given -
-  <fileset id="input-fs" dir="${basedir}" />
-
- -
-  <augment id="input-fs" excludes="foo" />
-
- -

Modifies the excludes attribute of input-fs.

- -
-  <augment id="input-fs">
-    <filename name="bar" />
-  </augment>
-
- -

Adds a filename selector to input-fs.

- - - -- cgit 1.2.3-korg