Methods Summary |
---|
protected void | checkConfiguration()Ensure that all the required arguments and other conditions have
been set.
if (!haveGroup) {
throw new BuildException("Required attribute group not set in "
+ "chgrp", 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 | setGroup(java.lang.String group)Set the group atribute.
createArg().setValue(group);
haveGroup = true;
|