<increment>

Purpose/Function

Takes value, presumably numeric, of variable in the environment and increments it by the given amount.

Attributes

NAME

TYPE

DEFAULT VALUE

DESCRIPTION

var

java.lang.String

(required)

the variable to be incremented

stride

java.lang.String

1

the variable to be incremented

Elements

None.

ReturnValues

None.

Examples

<while condition="$E{${i} &gt; 0}">
    ...
    <increment var="i" stride="-1"/>
</while>
  • No labels