Methods Summary |
---|
protected void | checkConfiguration()Ensure that all the required arguments and other conditions have
been set.
if (!haveOwner) {
throw new BuildException("Required attribute owner not set in"
+ " chown", getLocation());
}
super.checkConfiguration();
|
public void | setExecutable(java.lang.String e)We don't want to expose the executable atribute, so overide it.
throw new BuildException(getTaskType()
+ " doesn\'t support the executable"
+ " attribute", getLocation());
|
public void | setOwner(java.lang.String owner)Set the owner atribute.
createArg().setValue(owner);
haveOwner = true;
|