Core.Actions.Loop.WhileLoop

From emotive
Revision as of 11:30, 12 August 2014 by Nb (talk | contribs) (Created page with "Category:Core == Classification == {{ClassificationActivity | WhileLoop | Loop that is iterated until the condition evaluates to false. | Action | Core|OTX Core libr...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Classification

Name WhileLoop
Short Description Loop that is iterated until the condition evaluates to false.
Class Action
Extension OTX Core library
Group Core related actions
Exceptions -
Checker Rules -
Standard Compliant Yes

Description

The OTX (do) WhileLoop activity contains a sequence of activities that are executed repeatedly until the condition evaluates to false. The expression for the condition is either before (while) or calculated according to (do while) the loop and tested.

Icons Note.png Please keep in mind that Do While at least once iterate loop!

The loop can be exited about the activities of break, return, or throw. The continue activity stops the current iteration and continues with the next iteration, without having to leave the loop.

Properties

Name Data Type Class Default Cardinality Description
IsPostTested Boolean Value - [0..1] The condition is tested before the execution of the loop (while false) or afterwards (true, do-while)
Test Boolean Term - [1] Continue the loop condition expression

See also

ForLoop
ForeachLoop