org.apache.tools.ant.taskdefs
Class Sequential
- 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.
void | addTask(Task nestedTask) - Add a nested task to Sequential.
|
void | execute() - Execute all nestedTasks.
|
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 |
addTask
public void addTask(Task nestedTask)
Add a nested task to Sequential.
- addTask in interface TaskContainer
nestedTask
- Nested task to execute Sequential
Copyright © 2000-2006 Apache Software Foundation. All Rights Reserved.