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/filelist.html | 120 +++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Types/filelist.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Types/filelist.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Types/filelist.html b/framework/src/ant/apache-ant-1.9.6/manual/Types/filelist.html new file mode 100644 index 00000000..57c981d3 --- /dev/null +++ b/framework/src/ant/apache-ant-1.9.6/manual/Types/filelist.html @@ -0,0 +1,120 @@ + + + + + + +FileList Type + + + + +

FileList

+ +

FileLists are explicitly named lists of files. Whereas FileSets +act as filters, returning only those files that exist in the file +system and match specified patterns, FileLists are useful for +specifying files that may or may not exist. Multiple files are +specified as a list of files, relative to the specified directory, +with no support for wildcard expansion (filenames with wildcards will be +included in the list unchanged). +FileLists can appear inside tasks that support this feature or as stand-alone +types. +

+ + + + + + + + + + + + + + + + +
AttributeDescriptionRequired
dirThe base directory of this FileList.Yes
filesThe list of file names. This is a list of + file name separated by whitespace, or by commas. + Yes, unless there is a nested file element
+

Nested Element: file

+

+ This represents a file name. The nested element allows filenames containing + white space and commas. +

+

Since Apache Ant 1.6.2

+ + + + + + + + + + + +
AttributeDescriptionRequired
nameThe name of the file.Yes
+

Examples

+
+<filelist 
+    id="docfiles" 
+    dir="${doc.src}"
+    files="foo.xml,bar.xml"/> 
+
+ +

The files ${doc.src}/foo.xml and +${doc.src}/bar.xml. Note that these files may not (yet) +actually exist. +

+ +
+<filelist 
+    id="docfiles" 
+    dir="${doc.src}"
+    files="foo.xml
+           bar.xml"/> 
+
+ +

Same files as the example above.

+ +
+<filelist refid="docfiles"/> 
+
+ +

Same files as the example above.

+ +
+<filelist 
+    id="docfiles" 
+    dir="${doc.src}">
+    <file name="foo.xml"/>
+    <file name="bar.xml"/>
+</filelist>
+
+ +

Same files as the example above.

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