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

Name

public class Name extends ResourceComparator
Compares Resources by name.
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 foo.getName().compareTo(bar.getName());