Methods Summary |
---|
protected boolean | isValidOs()Automatically approve Unix OS's.
return Os.isFamily("unix") && super.isValidOs();
|
public void | setAddsourcefile(boolean b)Prevent the use of the addsourcefile atribute.
throw new BuildException(getTaskType()
+ " doesn\'t support the addsourcefile attribute", getLocation());
|
public void | setCommand(org.apache.tools.ant.types.Commandline cmdl)Prevent the user from specifying a different command.
throw new BuildException(getTaskType()
+ " doesn\'t support the command attribute",
getLocation());
|
public void | setFile(java.io.File src)Set the file which should have its access attributes modified.
FileSet fs = new FileSet();
fs.setFile(src);
addFileset(fs);
|
public void | setSkipEmptyFilesets(boolean skip)Prevent the skipping of empty filesets
throw new BuildException(getTaskType() + " doesn\'t support the "
+ "skipemptyfileset attribute",
getLocation());
|