Param Element
Description
The test, action, or component parameter node.
Namespace(none)
Diagram
ParamVal ElementParamName ElementSequenceParam Element
Overview
Param
The test, action, or component parameter node.
paramInOut optionalRestriction of xs:NMTOKEN
Specifies whether the test, action, or component parameter is an input parameter or an output parameter. Possible values: In (default), Out
Sequence 1..∞
ParamNamexs:string
The test, action, or component parameter name.
ParamValxs:string
The test, action, or component parameter value.
Attributes
NameTypeUseDefaultFixedDescription
paramInOutRestriction of xs:NMTOKENoptionalIn Specifies whether the test, action, or component parameter is an input parameter or an output parameter. Possible values: In (default), Out
Source
<xs:element name="Param" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>The test, action, or component parameter node.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence maxOccurs="unbounded">
      <xs:element ref="ParamName"   />
      <xs:element ref="ParamVal"   />
    </xs:sequence>
    <xs:attribute name="paramInOut" default="In">
      <xs:annotation>
        <xs:documentation>Specifies whether the test, action, or component parameter is an input parameter or an output parameter. Possible values: 
In (default), 
Out</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:NMTOKEN">
          <xs:enumeration value="In"   />
          <xs:enumeration value="Out"   />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
</xs:element>
See Also