From 753a6c60f47f3ac4f270005b65e9d6481de8eb68 Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 10:00:02 -0700 Subject: Adding maven and ant source trees Change-Id: I0a39b9add833a31b9c3f98d193983ae2f3a5a445 Signed-off-by: Ashlee Young --- .../apache-ant-1.9.6/manual/Types/propertyset.html | 143 +++++++++++++++++++++ 1 file changed, 143 insertions(+) create mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Types/propertyset.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Types/propertyset.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Types/propertyset.html b/framework/src/ant/apache-ant-1.9.6/manual/Types/propertyset.html new file mode 100644 index 00000000..81d491e0 --- /dev/null +++ b/framework/src/ant/apache-ant-1.9.6/manual/Types/propertyset.html @@ -0,0 +1,143 @@ + + + + + + +PropertySet Type + + + + +

PropertySet

+

Since Apache Ant 1.6

+ +

Groups a set of properties to be used by reference in a task that +supports this.

+ + + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
dynamicWhether to reevaluate the set every time the set + is used. Default is "true".No
negateWhether to negate results. If + "true", all properties not + selected by nested elements will be returned. Default is + "false". Since Ant 1.6.2 + No
+

Parameters specified as nested elements

+ +

propertyref

+ +

Selects properties from the current project to be included in the +set.

+ + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
nameSelect the property with the given name.Exactly one of these.
prefixSelect the properties whose name starts with the + given string.
regexSelect the properties that match the given + regular expression. Similar to regexp type mappers, this + requires a supported regular expression library.
builtinSelects a builtin set of properties. Valid + values for this attribute are all for all Ant + properties, system for the system properties and + commandline for all properties specified on the + command line when invoking Ant (plus a number of special + internal Ant properties).
+ +

propertyset

+ +

A propertyset can be used as the set union of more +propertysets.

+ +

For example:

+ +
+<propertyset id="properties-starting-with-foo">
+  <propertyref prefix="foo"/>
+</propertyset>
+<propertyset id="properties-starting-with-bar">
+  <propertyref prefix="bar"/>
+</propertyset>
+<propertyset id="my-set">
+  <propertyset refid="properties-starting-with-foo"/>
+  <propertyset refid="properties-starting-with-bar"/>
+</propertyset>
+
+ +

collects all properties whose name starts with either +"foo" or "bar" in the set named +"my-set".

+ +

mapper

+ +

A mapper - at maximum one mapper can be +specified. The mapper is used to change the names of the property +keys, for example: + +

+<propertyset id="properties-starting-with-foo">
+  <propertyref prefix="foo"/>
+  <mapper type="glob" from="foo*" to="bar*"/>
+</propertyset>
+
+ +

collects all properties whose name starts with "foo", but +changes the names to start with "bar" instead.

+ +

If supplied, the nested mapper will be applied +subsequent to any negation of matched properties.

+ + + + + + -- cgit 1.2.3-korg