net.sf.antcontrib.logic
Class ForDelegate
java.lang.Object
net.sf.antcontrib.logic.ForDelegate
public class ForDelegate
extends java.lang.Object
Task definition for the for task. This is based on
the foreach task but takes a sequential element
instead of a target and only works for ant >= 1.6Beta3
void | add(Collection collection) - Add a collection that can be iterated over.
|
void | add(DirSet dirset) - Add a dirset to be iterated over.
|
void | add(FileSet fileset) - Add a fileset to be iterated over.
|
void | add(Iterator iterator) - Add an iterator to be iterated over.
|
void | add(Map map) - Add a Map, iterate over the values
|
void | add(Object obj) - Add an object that has an Iterator iterator() method
that can be iterated over.
|
void | addConfigured(Path path) - This is a path that can be used instread of the list
attribute to interate over.
|
void | addConfiguredPath(Path path) - This is a path that can be used instread of the list
attribute to interate over.
|
void | addDirSet(DirSet dirset) - Add a dirset to be iterated over.
|
void | addFileSet(FileSet fileset) - Add a fileset to be iterated over.
|
Object | createSequential()
|
void | execute() - Run the for task.
|
void | setDelimiter(String delimiter) - Set the delimiter attribute.
|
void | setKeepgoing(boolean keepgoing) - Set the keepgoing attribute, indicating whether we
should stop on errors or continue heedlessly onward.
|
void | setList(String list) - Set the list attribute.
|
void | setLogger(TaskLogger logger) - Specify a logger to be used for passing along messages.
|
void | setOwningTarget(Target owningTarget)
|
void | setParallel(boolean parallel) - Attribute whether to execute the loop in parallel or in sequence.
|
void | setParam(String param) - Set the param attribute.
|
void | setProject(Project project)
|
void | setThreadCount(int threadCount) -
Set the maximum amount of threads we're going to allow
to execute in parallel
|
void | setTrim(boolean trim) - Set the trim attribute.
|
ForDelegate
public ForDelegate()
Creates a new For
instance.
This checks if the ant version is correct to run this task.
add
public void add(Collection collection)
Add a collection that can be iterated over.
collection
- a Collection
value.
add
public void add(DirSet dirset)
Add a dirset to be iterated over.
add
public void add(FileSet fileset)
Add a fileset to be iterated over.
fileset
- a FileSet
value
add
public void add(Iterator iterator)
Add an iterator to be iterated over.
iterator
- an Iterator
value
add
public void add(Map map)
Add a Map, iterate over the values
map
- a Map object - iterate over the values.
add
public void add(Object obj)
Add an object that has an Iterator iterator() method
that can be iterated over.
obj
- An object that can be iterated over.
addConfigured
public void addConfigured(Path path)
This is a path that can be used instread of the list
attribute to interate over. If this is set, each
path element in the path is used for an interator of the
sequential element.
path
- the path to be set by the ant script.
addConfiguredPath
public void addConfiguredPath(Path path)
This is a path that can be used instread of the list
attribute to interate over. If this is set, each
path element in the path is used for an interator of the
sequential element.
path
- the path to be set by the ant script.
addDirSet
public void addDirSet(DirSet dirset)
Add a dirset to be iterated over.
addFileSet
public void addFileSet(FileSet fileset)
Add a fileset to be iterated over.
fileset
- a FileSet
value
createSequential
public Object createSequential()
- a MacroDef#NestedSequential object to be configured
execute
public void execute()
Run the for task.
This checks the attributes and nested elements, and
if there are ok, it calls doTheTasks()
which constructes a macrodef task and a
for each interation a macrodef instance.
setDelimiter
public void setDelimiter(String delimiter)
Set the delimiter attribute.
delimiter
- the delimiter used to separate the tokens in
the list attribute. The default is ",".
setKeepgoing
public void setKeepgoing(boolean keepgoing)
Set the keepgoing attribute, indicating whether we
should stop on errors or continue heedlessly onward.
keepgoing
- a boolean, if true
then we act in
the keepgoing manner described.
setList
public void setList(String list)
Set the list attribute.
list
- a list of delimiter separated tokens.
setLogger
public void setLogger(TaskLogger logger)
Specify a logger to be used for passing along messages.
setOwningTarget
public void setOwningTarget(Target owningTarget)
setParallel
public void setParallel(boolean parallel)
Attribute whether to execute the loop in parallel or in sequence.
parallel
- if true execute the tasks in parallel. Default is false.
setParam
public void setParam(String param)
Set the param attribute.
This is the name of the macrodef attribute that
gets set for each iterator of the sequential element.
param
- the name of the macrodef attribute.
setProject
public void setProject(Project project)
setThreadCount
public void setThreadCount(int threadCount)
Set the maximum amount of threads we're going to allow
to execute in parallel
threadCount
- the number of threads to use
setTrim
public void setTrim(boolean trim)
Set the trim attribute.
trim
- if true, trim the value for each iterator.