| |
|
| java.lang.Object org.apache.tools.ant.taskdefs.condition.Contains
Contains | public class Contains implements Condition(Code) | | Is one string part of another string?
since: Ant 1.5 |
eval | public boolean eval() throws BuildException(Code) | | since: Ant 1.5 true if the substring is within the string exception: BuildException - if the attributes are not set correctly |
setCasesensitive | public void setCasesensitive(boolean b)(Code) | | Whether to search ignoring case or not.
Parameters: b - if false, ignore case since: Ant 1.5 |
setString | public void setString(String string)(Code) | | The string to search in.
Parameters: string - the string to search in since: Ant 1.5 |
setSubstring | public void setSubstring(String subString)(Code) | | The string to search for.
Parameters: subString - the string to search for since: Ant 1.5 |
|
|
|