Showing:

Annotations
Diagrams
Instances
Properties
Source
Used by
Element IfActionGroupType / If
Annotations
The If element is the first test and plan element.
Diagram
Diagram GenericExpressions_xsd_Element_BooleanExpression.tmp#BooleanExpression QIFPlan_xsd_Element_PlanElement.tmp#PlanElement QIFPlan_xsd_Complex_Type_TestAndPlanElementType.tmp#TestAndPlanElementType
Type TestAndPlanElementType
Properties
content complex
Children BooleanExpression, PlanElement
Instance
<If xmlns="http://qifstandards.org/xsd/qif3">
  <BooleanExpression>{1,1}</BooleanExpression>
  <PlanElement>{1,1}</PlanElement>
</If>
Source
<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>
Schema location file:////Q:/kramer/qif3.0/model/QIFforHTMLxsd/QIFApplications/QIFPlan.xsd
Element IfActionGroupType / ElseIf
Annotations
Each optional ElseIf element is an additional test and plan element.
Diagram
Diagram GenericExpressions_xsd_Element_BooleanExpression.tmp#BooleanExpression QIFPlan_xsd_Element_PlanElement.tmp#PlanElement QIFPlan_xsd_Complex_Type_TestAndPlanElementType.tmp#TestAndPlanElementType
Type TestAndPlanElementType
Properties
content complex
minOccurs 0
maxOccurs unbounded
Children BooleanExpression, PlanElement
Instance
<ElseIf xmlns="http://qifstandards.org/xsd/qif3">
  <BooleanExpression>{1,1}</BooleanExpression>
  <PlanElement>{1,1}</PlanElement>
</ElseIf>
Source
<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>
Schema location file:////Q:/kramer/qif3.0/model/QIFforHTMLxsd/QIFApplications/QIFPlan.xsd
Element IfActionGroupType / ElseDo
Annotations
The optional ElseDo element is a plan element to execute if the ElseDo is reached.
Diagram
Diagram QIFPlan_xsd_Element_PlanElement.tmp#PlanElement QIFPlan_xsd_Complex_Type_ElseDoType.tmp#ElseDoType
Type ElseDoType
Properties
content complex
minOccurs 0
Children PlanElement
Instance
<ElseDo xmlns="http://qifstandards.org/xsd/qif3">
  <PlanElement>{1,1}</PlanElement>
</ElseDo>
Source
<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>
Schema location file:////Q:/kramer/qif3.0/model/QIFforHTMLxsd/QIFApplications/QIFPlan.xsd
Complex Type IfActionGroupType
Annotations
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.
Diagram
Diagram QIFPlan_xsd_Complex_Type_PlanElementBaseType.tmp#PlanElementBaseType_WorkInstructionIds Primitives_xsd_Element_Attributes.tmp#Attributes QIFPlan_xsd_Complex_Type_PlanElementBaseType.tmp#PlanElementBaseType QIFPlan_xsd_Complex_Type_ActionGroupBaseType.tmp#ActionGroupBaseType_MeasureActionGroupFunction QIFPlan_xsd_Complex_Type_ActionGroupBaseType.tmp#ActionGroupBaseType QIFPlan_xsd_Complex_Type_IfActionGroupType.tmp#IfActionGroupType_If QIFPlan_xsd_Complex_Type_IfActionGroupType.tmp#IfActionGroupType_ElseIf QIFPlan_xsd_Complex_Type_IfActionGroupType.tmp#IfActionGroupType_ElseDo
Type extension of ActionGroupBaseType
Type hierarchy
Used by
Element IfActionGroup
Children Attributes, ElseDo, ElseIf, If, MeasureActionGroupFunction, WorkInstructionIds
Source
<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>
Schema location file:////Q:/kramer/qif3.0/model/QIFforHTMLxsd/QIFApplications/QIFPlan.xsd