org.apache.tools.ant.taskdefs.condition
Class ResourcesMatch
java.lang.Object
org.apache.tools.ant.taskdefs.condition.ResourcesMatch
- Condition
public class ResourcesMatch
extends java.lang.Object
Compares resources for equality based on size and content.
All resources specified must match; no resource collections
specified is an error condition; if resource collections are
specified, but yield fewer than two elements, the condition
evaluates to true
.
void | add(ResourceCollection rc) - Add a resource collection.
|
boolean | eval() - Verify that all resources match.
|
void | setAsText(boolean asText) - Set whether to treat resources as if they were text files,
ignoring line endings.
|
add
public void add(ResourceCollection rc)
Add a resource collection.
rc
- the resource collection to add.
eval
public boolean eval()
throws BuildException
Verify that all resources match.
- eval in interface Condition
- true if all resources are equal.
setAsText
public void setAsText(boolean asText)
Set whether to treat resources as if they were text files,
ignoring line endings.
asText
- whether to ignore line endings.