Class HasFreeSpace
java.lang.Object
org.apache.tools.ant.taskdefs.condition.HasFreeSpace
- All Implemented Interfaces:
 Condition
public class HasFreeSpace extends java.lang.Object implements Condition
<hasfreespace>
 
Condition returns true if selected partition has the requested space, false otherwise.
- Since:
 - Ant 1.7
 
- 
Constructor Summary
Constructors Constructor Description HasFreeSpace() - 
Method Summary
Modifier and Type Method Description booleaneval()Evaluate the condition.java.lang.StringgetNeeded()The amount of free space requiredjava.lang.StringgetPartition()The partition/device to checkvoidsetNeeded(java.lang.String needed)Set the amount of space required.voidsetPartition(java.lang.String partition)Set the partition name. 
- 
Constructor Details
- 
HasFreeSpace
public HasFreeSpace() 
 - 
 - 
Method Details
- 
eval
Evaluate the condition.- Specified by:
 evalin interfaceCondition- Returns:
 - true if there enough free space.
 - Throws:
 BuildException- if there is a problem.
 - 
getPartition
public java.lang.String getPartition()The partition/device to check- Returns:
 - the partition.
 
 - 
setPartition
public void setPartition(java.lang.String partition)Set the partition name.- Parameters:
 partition- the name to use.
 - 
getNeeded
public java.lang.String getNeeded()The amount of free space required- Returns:
 - the amount required
 
 - 
setNeeded
public void setNeeded(java.lang.String needed)Set the amount of space required.- Parameters:
 needed- the amount required.
 
 -