@@ -100,6 +100,7 @@ platforms.</p>
<p>Groups all files in directory <code>${server.src}</code> that are Java
<p>Groups all files in directory <code>${server.src}</code> that are Java
source files and don't have the text <code>Test</code> in their
source files and don't have the text <code>Test</code> in their
name.</p>
name.</p>
<blockquote><pre>
<blockquote><pre>
<fileset dir="${server.src}" casesensitive="yes">
<fileset dir="${server.src}" casesensitive="yes">
<patternset id="non.test.sources">
<patternset id="non.test.sources">
@@ -111,6 +112,7 @@ name.</p>
<p>Groups the same files as the above example, but also establishes
<p>Groups the same files as the above example, but also establishes
a PatternSet that can be referenced in other
a PatternSet that can be referenced in other
<code><fileset></code> elements, rooted at a different directory.</p>
<code><fileset></code> elements, rooted at a different directory.</p>
<blockquote><pre>
<blockquote><pre>
<fileset dir="${client.src}" >
<fileset dir="${client.src}" >
<patternset refid="non.test.sources"/>
<patternset refid="non.test.sources"/>
@@ -118,6 +120,7 @@ a PatternSet that can be referenced in other
</pre></blockquote>
</pre></blockquote>
<p>Groups all files in directory <code>${client.src}</code>, using the
<p>Groups all files in directory <code>${client.src}</code>, using the
same patterns as the above example.</p>
same patterns as the above example.</p>
<blockquote><pre>
<blockquote><pre>
<fileset dir="${server.src}" casesensitive="yes">
<fileset dir="${server.src}" casesensitive="yes">
<filename name="**/*.java"/>
<filename name="**/*.java"/>
@@ -126,6 +129,7 @@ same patterns as the above example.</p>
</pre></blockquote>
</pre></blockquote>
<p>Groups the same files as the top example, but using the
<p>Groups the same files as the top example, but using the
<code><filename></code> selector.</p>
<code><filename></code> selector.</p>
<blockquote><pre>
<blockquote><pre>
<fileset dir="${server.src}" casesensitive="yes">
<fileset dir="${server.src}" casesensitive="yes">
<filename name="**/*.java"/>
<filename name="**/*.java"/>
@@ -138,6 +142,12 @@ same patterns as the above example.</p>
<code><filename></code> selector and the <code><not></code>
<code><filename></code> selector and the <code><not></code>
selector container.</p>
selector container.</p>
<blockquote><pre>
<fileset dir="src" includes="main/" />
</pre></blockquote>
<p>Selects all files in <i>src/main</i> (e.g. <i>src/main/Foo.java</i> or
<i>src/main/application/Bar.java</i>).</p>
<hr>
<hr>
<p align="center">Copyright © 2000-2005 The Apache Software Foundation.
<p align="center">Copyright © 2000-2005 The Apache Software Foundation.
All rights Reserved.</p>
All rights Reserved.</p>