FileDocCategorySizeDatePackage
Size.javaAPI DocApache Ant 1.701427Wed Dec 13 06:16:22 GMT 2006org.apache.tools.ant.types.resources.comparators

Size

public class Size extends ResourceComparator
Compares Resources by size.
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.getSize() - bar.getSize());