| |
|
| java.lang.Object org.apache.tools.ant.taskdefs.condition.AntVersion
AntVersion | public class AntVersion implements Condition(Code) | | An Ant version condition.
since: Ant 1.7 |
getAtLeast | public String getAtLeast()(Code) | | Get the atleast attribute.
the atleast attribute. |
getExactly | public String getExactly()(Code) | | Get the exactly attribute.
the exactly attribute. |
setAtLeast | public void setAtLeast(String atLeast)(Code) | | Set the atleast attribute.
This is of the form major.minor.point.
For example 1.7.0.
Parameters: atLeast - the version to check against. |
setExactly | public void setExactly(String exactly)(Code) | | Set the exactly attribute.
This is of the form major.minor.point.
For example 1.7.0.
Parameters: exactly - the version to check against. |
|
|
|