<xs:element name="If" type="TestAndPlanElementType"><xs:annotation><xs:documentation>The If element is the first test and plan element.</xs:documentation></xs:annotation></xs:element>
<xs:element name="ElseIf" type="TestAndPlanElementType" minOccurs="0" maxOccurs="unbounded"><xs:annotation><xs:documentation>Each optional ElseIf element is an additional test and plan element.</xs:documentation></xs:annotation></xs:element>
<xs:element name="ElseDo" type="ElseDoType" minOccurs="0"><xs:annotation><xs:documentation>The optional ElseDo element is a plan element to execute if the ElseDo is reached.</xs:documentation></xs:annotation></xs:element>
IfActionGroupType is derived from ActionGroupBaseType and represents an If-ElseIf-Else construct with zero to many Else-Ifs and an optional Else. If is a test to evaluate and the plan element to execute if the test evaluates to true. Each optional ElseIf is a test to evaluate and the plan element to execute if the test evaluates to true. The optional ElseDo is a plan element to execute if none of the If or ElseIf tests evaluates to true. To execute an IfActionGroupType: 1. Evaluate the test in the If. If it evaluates to true, execute the plan element in the If and return. 2. Otherwise, evaluate the test in the next ElseIf if there is one. If it evaluates to true, execute the plan element in the ElseIf and return. Repeat until either return occurs or there are no more ElseIfs. 3. Otherwise, if there is an ElseDo, execute the plan element in the ElseDo and return. 4. Otherwise, return. It is possible that no plan element will be executed when an IfActionGroupType is executed.
<xs:complexType name="IfActionGroupType"><xs:annotation><xs:documentation>IfActionGroupType is derived from ActionGroupBaseType and represents an If-ElseIf-Else construct with zero to many Else-Ifs and an optional Else. If is a test to evaluate and the plan element to execute if the test evaluates to true. Each optional ElseIf is a test to evaluate and the plan element to execute if the test evaluates to true. The optional ElseDo is a plan element to execute if none of the If or ElseIf tests evaluates to true. To execute an IfActionGroupType: 1. Evaluate the test in the If. If it evaluates to true, execute the plan element in the If and return. 2. Otherwise, evaluate the test in the next ElseIf if there is one. If it evaluates to true, execute the plan element in the ElseIf and return. Repeat until either return occurs or there are no more ElseIfs. 3. Otherwise, if there is an ElseDo, execute the plan element in the ElseDo and return. 4. Otherwise, return. It is possible that no plan element will be executed when an IfActionGroupType is executed.</xs:documentation></xs:annotation><xs:complexContent><xs:extension base="ActionGroupBaseType"><xs:sequence><xs:element name="If" type="TestAndPlanElementType"><xs:annotation><xs:documentation>The If element is the first test and plan element.</xs:documentation></xs:annotation></xs:element><xs:element name="ElseIf" type="TestAndPlanElementType" minOccurs="0" maxOccurs="unbounded"><xs:annotation><xs:documentation>Each optional ElseIf element is an additional test and plan element.</xs:documentation></xs:annotation></xs:element><xs:element name="ElseDo" type="ElseDoType" minOccurs="0"><xs:annotation><xs:documentation>The optional ElseDo element is a plan element to execute if the ElseDo is reached.</xs:documentation></xs:annotation></xs:element></xs:sequence></xs:extension></xs:complexContent></xs:complexType>