| This class is an ant task which adds the for-loop functionality. It is an
arbitrary tasks container, which is capable of executing its childrne ina loop.
Two types of loops are supported. First, iterating of over a list of values; in
this case the list and separator (optional) attributes
should be set and the property speficied with property attribute
will be set to each of the value speficied in the the list.
Second, iterating of a range of integers. In this case the from ,
to and increment (optional) attributes should be set,
meaning the starting point, the finish point and the step. Note that if one
specifies a negative step, the iteration could go backwards.
If a mixture of attributes is supplied, iterating over a list is preferred.
author: Kirill Sorokin |