diff --git a/docs/manual/CoreTypes/fileset.html b/docs/manual/CoreTypes/fileset.html index ad3bbb2fa..f7d91d568 100644 --- a/docs/manual/CoreTypes/fileset.html +++ b/docs/manual/CoreTypes/fileset.html @@ -100,6 +100,7 @@ platforms.

Groups all files in directory ${server.src} that are Java source files and don't have the text Test in their name.

+
 <fileset dir="${server.src}" casesensitive="yes">
   <patternset id="non.test.sources">
@@ -111,6 +112,7 @@ name.

Groups the same files as the above example, but also establishes a PatternSet that can be referenced in other <fileset> elements, rooted at a different directory.

+
 <fileset dir="${client.src}" >
   <patternset refid="non.test.sources"/>
@@ -118,6 +120,7 @@ a PatternSet that can be referenced in other
 

Groups all files in directory ${client.src}, using the same patterns as the above example.

+
 <fileset dir="${server.src}" casesensitive="yes">
   <filename name="**/*.java"/>
@@ -126,6 +129,7 @@ same patterns as the above example.

Groups the same files as the top example, but using the <filename> selector.

+
 <fileset dir="${server.src}" casesensitive="yes">
   <filename name="**/*.java"/>
@@ -138,6 +142,12 @@ same patterns as the above example.

<filename> selector and the <not> selector container.

+
+<fileset dir="src" includes="main/" />
+
+

Selects all files in src/main (e.g. src/main/Foo.java or +src/main/application/Bar.java).

+

Copyright © 2000-2005 The Apache Software Foundation. All rights Reserved.