Package org.apache.tools.ant.taskdefs
Class Sequential
java.lang.Object
org.apache.tools.ant.ProjectComponent
org.apache.tools.ant.Task
org.apache.tools.ant.taskdefs.Sequential
- All Implemented Interfaces:
- Cloneable,- TaskContainer
Sequential is a container task - it can contain other Ant tasks. The nested
 tasks are simply executed in sequence. Sequential's primary use is to support
 the sequential execution of a subset of tasks within the 
Parallel Task
 The sequential task has no attributes and does not support any nested elements apart from Ant tasks. Any valid Ant task may be embedded within the sequential task.
- Since:
- Ant 1.4
- 
Field SummaryFields inherited from class org.apache.tools.ant.ProjectComponentdescription, location, project
- 
Constructor SummaryConstructors
- 
Method SummaryMethods inherited from class org.apache.tools.ant.TaskbindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskTypeMethods inherited from class org.apache.tools.ant.ProjectComponentclone, getDescription, getLocation, getProject, setDescription, setLocation, setProject
- 
Constructor Details- 
Sequentialpublic Sequential()
 
- 
- 
Method Details- 
addTaskAdd a nested task to Sequential.- Specified by:
- addTaskin interface- TaskContainer
- Parameters:
- nestedTask- Nested task to execute Sequential
 
- 
executeExecute all nestedTasks.- Overrides:
- executein class- Task
- Throws:
- BuildException- if one of the nested tasks fails.
 
 
-