Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Set a workflow variable to a constant value.  Use AssignVariablePlugin as a tool.  Use the parameters workflow variable name : A,  expression : 0.
  2. To increment a workflow variable value, use AssignVariablePlugin as a tool.  Use the parameters workflow variable name : A, expression : Integer.parseInt(A) + 1.
  3. To decrement a workflow variable value : use AssignVariablePlugin as a tool. Use the parameters workflow variable name : A, expression : Integer.parseInt(A) - 1.

...