TestingEnvironment Schema
ListOfValues Element
Description
A predefined list of values that can be used for test object method arguments or return values.
Namespace(none)
Diagram
EnumValue ElementHelpInfo ElementDescription ElementSequenceListOfValues Element
Overview
ListOfValues
A predefined list of values that can be used for test object method arguments or return values.
Name required xs:ID
The name of the list of values. This name can be used as an argument type.
Sequence
Description optional xs:string
The description of the element.
HelpInfo optional
Context-sensitive Help information for the element.
HelpFile required xs:string
The file system path to the file which contains the help information.
HelpContext optional xs:integer
The context identifier for the location inside the help file where the information resides.
EnumValue 1..∞
A possible value in a predefined list of values.
HelpContext optional xs:integer
RealValue required xs:integer
Sequence
Description optional xs:string
The description of the element.
Attributes
NameTypeUseDefaultFixedDescription
Namexs:IDrequired  The name of the list of values. This name can be used as an argument type.
Source
<xs:element name="ListOfValues" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>A predefined list of values that can be used for test object method arguments or return values.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="Description" minOccurs="0"  />
      <xs:element ref="HelpInfo" minOccurs="0"  />
      <xs:element name="EnumValue" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>A possible value in a predefined list of values.</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="Description" minOccurs="0"  />
          </xs:sequence>
          <xs:attribute name="Name" type="RestrictedString" use="required"  />
          <xs:attribute name="HelpContext" type="xs:integer" use="optional" default="0"  />
          <xs:attribute name="RealValue" type="xs:integer" use="required"  />
        </xs:complexType>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="Name" type="xs:ID" use="required">
      <xs:annotation>
        <xs:documentation>The name of the list of values. This name can be used as an argument type.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element>
See Also