The WhileActionGroupType represents a loop. To execute a WhileActionGroupType, evaluate the BooleanExpression. If the BooleanExpression evaluates to true, execute the PlanElement. Repeat evaluating and executing as long as the BooleanExpression evaluates to true. The first time the BooleanExpression evaluates to false, return. If the BooleanExpression evaluates to false the first time it is evaluated, the PlanElement is never executed.
<xs:complexType name="WhileActionGroupType"><xs:annotation><xs:documentation>The WhileActionGroupType represents a loop. To execute a WhileActionGroupType, evaluate the BooleanExpression. If the BooleanExpression evaluates to true, execute the PlanElement. Repeat evaluating and executing as long as the BooleanExpression evaluates to true. The first time the BooleanExpression evaluates to false, return. If the BooleanExpression evaluates to false the first time it is evaluated, the PlanElement is never executed.</xs:documentation></xs:annotation><xs:complexContent><xs:extension base="ActionGroupBaseType"><xs:sequence><xs:element ref="BooleanExpression"><xs:annotation><xs:documentation>The BooleanExpression element is the test.</xs:documentation></xs:annotation></xs:element><xs:element ref="PlanElement"><xs:annotation><xs:documentation>The PlanElement element is the element to execute if the the test evaluates to true.</xs:documentation></xs:annotation></xs:element></xs:sequence></xs:extension></xs:complexContent></xs:complexType>