diff --git a/docs/manual/CoreTypes/fileset.html b/docs/manual/CoreTypes/fileset.html index 72976c4ef..e6e60489d 100644 --- a/docs/manual/CoreTypes/fileset.html +++ b/docs/manual/CoreTypes/fileset.html @@ -72,6 +72,15 @@ attributes.
+<fileset dir="${server.src}" casesensitive="yes" >
+ <include name="**/*.java"/>
+ <exclude name="**/*Test*"/>
+</fileset>
+
+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" >
<include name="**/*.java"/>
@@ -79,16 +88,16 @@ attributes.
</patternset>
</fileset>
-Groups all files in directory ${server.src} that are Java
-source files and don't have the text Test in their
-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"/>
</fileset>
Groups all files in directory ${client.src}, using the
-same patterns as the example above.
Copyright © 2001 Apache Software Foundation. All rights