FileDocCategorySizeDatePackage
Date.javaAPI DocApache Ant 1.701461Wed Dec 13 06:16:20 GMT 2006org.apache.tools.ant.types.resources.comparators

Date

public class Date extends ResourceComparator
Compares Resources by last modification date.
since
Ant 1.7

Fields Summary
Constructors Summary
Methods Summary
protected intresourceCompare(org.apache.tools.ant.types.Resource foo, org.apache.tools.ant.types.Resource bar)
Compare two Resources.

param
foo the first Resource.
param
bar the second Resource.
return
a negative integer, zero, or a positive integer as the first argument is less than, equal to, or greater than the second.

        return (int) (foo.getLastModified() - bar.getLastModified());