Package ball.util.ant.taskdefs
Interface PropertySetterAntTask
-
- All Superinterfaces:
AntTaskMixIn
public interface PropertySetterAntTask extends AntTaskMixIn
Interface to provide common default methods forTasks that may assign property values.- Author:
- Allen D. Ball
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidexecute()StringgetProperty()ObjectgetPropertyValue()Method to get the value to assign to the property.voidsetProperty(String property)
-
-
-
Method Detail
-
getProperty
String getProperty()
-
setProperty
void setProperty(String property)
-
getPropertyValue
Object getPropertyValue() throws Exception
Method to get the value to assign to the property.- Returns:
- The property value.
- Throws:
Exception- As specified by implementing subclass.
-
execute
default void execute() throws BuildException
- Throws:
BuildException
-
-