Class Attrib
java.lang.Object
org.apache.tools.ant.ProjectComponent
org.apache.tools.ant.Task
org.apache.tools.ant.taskdefs.ExecTask
org.apache.tools.ant.taskdefs.ExecuteOn
org.apache.tools.ant.taskdefs.optional.windows.Attrib
- All Implemented Interfaces:
java.lang.Cloneable
public class Attrib extends ExecuteOn
Attrib equivalent for Win32 environments.
Note: Attrib parameters /S and /D are not handled.
- Since:
- Ant 1.6
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.tools.ant.taskdefs.ExecuteOn
ExecuteOn.FileDirBoth
-
Field Summary
Fields inherited from class org.apache.tools.ant.taskdefs.ExecuteOn
destDir, filesets, mapper, mapperElement, srcFilePos, srcIsFirst, targetFilePos, type
Fields inherited from class org.apache.tools.ant.taskdefs.ExecTask
cmdl, failOnError, newEnvironment, redirector, redirectorElement
-
Constructor Summary
Constructors Constructor Description Attrib()
Constructor for Attrib. -
Method Summary
Modifier and Type Method Description protected void
checkConfiguration()
Check the attributes.protected boolean
isValidOs()
Check if the os is valid.void
setAddsourcefile(boolean b)
Add source file.void
setArchive(boolean value)
Set the Archive file attribute.void
setCommand(java.lang.String e)
Set the executable.void
setExecutable(java.lang.String e)
Set the executable.void
setFile(java.io.File src)
A file to be attribed.void
setHidden(boolean value)
Set the Hidden file attribute.void
setMaxParallel(int max)
Set max parallel.void
setParallel(boolean parallel)
Set parallel.void
setReadonly(boolean value)
Set the ReadOnly file attribute.void
setSkipEmptyFilesets(boolean skip)
Set skip empty file sets.void
setSystem(boolean value)
Set the System file attribute.Methods inherited from class org.apache.tools.ant.taskdefs.ExecuteOn
add, add, addDirset, addFilelist, addFileset, createHandler, createMapper, createSrcfile, createTargetfile, getCommandline, getCommandline, getDirs, getFiles, getFilesAndDirs, runExec, runParallel, setDest, setForce, setForwardslash, setIgnoremissing, setRelative, setType, setupRedirector, setVerbose
Methods inherited from class org.apache.tools.ant.taskdefs.ExecTask
addConfiguredRedirector, addEnv, createArg, createWatchdog, execute, getOs, getOsFamily, getResolveExecutable, logFlush, maybeSetResultPropertyValue, prepareExec, resolveExecutable, runExecute, setAppend, setCommand, setDir, setDiscardError, setDiscardOutput, setError, setErrorProperty, setFailIfExecutionFails, setFailonerror, setInput, setInputString, setLogError, setNewenvironment, setOs, setOsFamily, setOutput, setOutputproperty, setResolveExecutable, setResultProperty, setSearchPath, setSpawn, setTimeout, setTimeout, setVMLauncher
Methods inherited from class org.apache.tools.ant.Task
bindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType
Methods inherited from class org.apache.tools.ant.ProjectComponent
clone, getDescription, getLocation, getProject, setDescription, setLocation, setProject
-
Constructor Details
-
Attrib
public Attrib()Constructor for Attrib.
-
-
Method Details
-
setFile
public void setFile(java.io.File src)A file to be attribed.- Parameters:
src
- a file
-
setReadonly
public void setReadonly(boolean value)Set the ReadOnly file attribute.- Parameters:
value
- aboolean
value
-
setArchive
public void setArchive(boolean value)Set the Archive file attribute.- Parameters:
value
- aboolean
value
-
setSystem
public void setSystem(boolean value)Set the System file attribute.- Parameters:
value
- aboolean
value
-
setHidden
public void setHidden(boolean value)Set the Hidden file attribute.- Parameters:
value
- aboolean
value
-
checkConfiguration
protected void checkConfiguration()Check the attributes.- Overrides:
checkConfiguration
in classExecuteOn
-
setExecutable
public void setExecutable(java.lang.String e)Set the executable. This is not allowed, and it always throws a BuildException.- Overrides:
setExecutable
in classExecTask
- Parameters:
e
- ignored
-
setCommand
public void setCommand(java.lang.String e)Set the executable. This is not allowed, and it always throws a BuildException.- Parameters:
e
- ignored
-
setAddsourcefile
public void setAddsourcefile(boolean b)Add source file. This is not allowed, and it always throws a BuildException.- Overrides:
setAddsourcefile
in classExecuteOn
- Parameters:
b
- ignored
-
setSkipEmptyFilesets
public void setSkipEmptyFilesets(boolean skip)Set skip empty file sets. This is not allowed, and it always throws a BuildException.- Overrides:
setSkipEmptyFilesets
in classExecuteOn
- Parameters:
skip
- ignored
-
setParallel
public void setParallel(boolean parallel)Set parallel. This is not allowed, and it always throws a BuildException.- Overrides:
setParallel
in classExecuteOn
- Parameters:
parallel
- ignored
-
setMaxParallel
public void setMaxParallel(int max)Set max parallel. This is not allowed, and it always throws a BuildException.- Overrides:
setMaxParallel
in classExecuteOn
- Parameters:
max
- ignored
-
isValidOs
protected boolean isValidOs()Check if the os is valid. Default is to allow windows
-