diff --git a/docs/manual/CoreTypes/dirset.html b/docs/manual/CoreTypes/dirset.html index a1d2cc6b4..f5fe3130b 100644 --- a/docs/manual/CoreTypes/dirset.html +++ b/docs/manual/CoreTypes/dirset.html @@ -92,6 +92,7 @@ equivalent to an <and> selector container.

Examples

+
 <dirset dir="${build.dir}">
   <include name="apps/**/classes"/>
@@ -101,6 +102,7 @@ equivalent to an <and> selector container.

Groups all directories named classes found under the apps subdirectory of ${build.dir}, except those that have the text Test in their name.

+
 <dirset dir="${build.dir}">
   <patternset id="non.test.classes">
@@ -112,6 +114,7 @@ that have the text Test in their name.

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

+
 <dirset dir="${debug_build.dir}">
   <patternset refid="non.test.classes"/>
@@ -120,6 +123,15 @@ a PatternSet that can be referenced in other
 

Groups all directories in directory ${debug_build.dir}, using the same patterns as the above example.

+
+<dirset id="dirset" dir="${workingdir}">
+   <present targetdir="${workingdir}">
+        <mapper type="glob" from="*" to="*/${markerfile}" />
+   </present>
+</dirset>
+
+

Selects all directories somewhere under ${workingdir} +which contain a ${markerfile}.