| @@ -54,16 +54,16 @@ import org.apache.tools.ant.util.ResourceUtils; | |||||
| * <p>The ModifiedSelector is implemented as a <b>CoreSelector</b> and uses default | * <p>The ModifiedSelector is implemented as a <b>CoreSelector</b> and uses default | ||||
| * values for all its attributes therefore the simplest example is</p><pre> | * values for all its attributes therefore the simplest example is</p><pre> | ||||
| * <copy todir="dest"> | * <copy todir="dest"> | ||||
| * <filelist dir="src"> | |||||
| * <fileset dir="src"> | |||||
| * <modified/> | * <modified/> | ||||
| * </filelist> | |||||
| * </fileset> | |||||
| * </copy> | * </copy> | ||||
| * </pre> | * </pre> | ||||
| * | * | ||||
| * <p>The same example rewritten as CoreSelector with setting the all values | * <p>The same example rewritten as CoreSelector with setting the all values | ||||
| * (same as defaults are) would be</p><pre> | * (same as defaults are) would be</p><pre> | ||||
| * <copy todir="dest"> | * <copy todir="dest"> | ||||
| * <filelist dir="src"> | |||||
| * <fileset dir="src"> | |||||
| * <modified update="true" | * <modified update="true" | ||||
| * cache="propertyfile" | * cache="propertyfile" | ||||
| * algorithm="digest" | * algorithm="digest" | ||||
| @@ -71,13 +71,13 @@ import org.apache.tools.ant.util.ResourceUtils; | |||||
| * <param name="cache.cachefile" value="cache.properties"/> | * <param name="cache.cachefile" value="cache.properties"/> | ||||
| * <param name="algorithm.algorithm" value="MD5"/> | * <param name="algorithm.algorithm" value="MD5"/> | ||||
| * </modified> | * </modified> | ||||
| * </filelist> | |||||
| * </fileset> | |||||
| * </copy> | * </copy> | ||||
| * </pre> | * </pre> | ||||
| * | * | ||||
| * <p>And the same rewritten as CustomSelector would be</p><pre> | * <p>And the same rewritten as CustomSelector would be</p><pre> | ||||
| * <copy todir="dest"> | * <copy todir="dest"> | ||||
| * <filelist dir="src"> | |||||
| * <fileset dir="src"> | |||||
| * <custom class="org.apache.tools.ant.type.selectors.ModifiedSelector"> | * <custom class="org.apache.tools.ant.type.selectors.ModifiedSelector"> | ||||
| * <param name="update" value="true"/> | * <param name="update" value="true"/> | ||||
| * <param name="cache" value="propertyfile"/> | * <param name="cache" value="propertyfile"/> | ||||
| @@ -86,7 +86,7 @@ import org.apache.tools.ant.util.ResourceUtils; | |||||
| * <param name="cache.cachefile" value="cache.properties"/> | * <param name="cache.cachefile" value="cache.properties"/> | ||||
| * <param name="algorithm.algorithm" value="MD5"/> | * <param name="algorithm.algorithm" value="MD5"/> | ||||
| * </custom> | * </custom> | ||||
| * </filelist> | |||||
| * </fileset> | |||||
| * </copy> | * </copy> | ||||
| * </pre> | * </pre> | ||||
| * | * | ||||