org.apache.tools.ant.taskdefs

Class Sequential

Implemented Interfaces:
TaskContainer

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

Field Summary

Fields inherited from class org.apache.tools.ant.Task

description, location, target, taskName, taskType, wrapper

Fields inherited from class org.apache.tools.ant.ProjectComponent

project

Method Summary

void
addTask(Task nestedTask)
Add a nested task to Sequential.
void
execute()
Execute all nestedTasks.

Methods inherited from class org.apache.tools.ant.Task

execute, getDescription, getLocation, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, maybeConfigure, perform, reconfigure, setDescription, setLocation, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType

Methods inherited from class org.apache.tools.ant.ProjectComponent

getProject, log, log, setProject

Method Details

addTask

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

Specified by:
addTask in interface TaskContainer
Parameters:
nestedTask - Nested task to execute Sequential


execute

public void execute()
            throws BuildException
Execute all nestedTasks.
Overrides:
execute in interface Task
Throws:
BuildException - if one of the nested tasks fails.

Copyright B) 2000-2007 Apache Software Foundation. All Rights Reserved.