org.apache.tools.ant.taskdefs

Class Sequential

public class Sequential extends Task implements 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

UNKNOWN: category="control"

Method Summary
voidaddTask(Task nestedTask)
Add a nested task to Sequential.
voidexecute()
Execute all nestedTasks.

Method Detail

addTask

public void addTask(Task nestedTask)
Add a nested task to Sequential.

Parameters: nestedTask Nested task to execute Sequential

execute

public void execute()
Execute all nestedTasks.

Throws: BuildException if one of the nested tasks fails.