TestingEnvironment Schema
Documentation Element
Description
The documentation string for the operation.
Namespace(none)
Type
Extension of xs:string
Diagram
Documentation Element
Overview
Documentation Extension of xs:string
The documentation string for the operation.
NumOfArguments optional xs:integer
The number of arguments that require values to be specified in order to show the documentation string for the operation.
Attributes
NameTypeUseDefaultFixedDescription
NumOfArgumentsxs:integeroptional0 The number of arguments that require values to be specified in order to show the documentation string for the operation.
Source
<xs:element name="Documentation" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>The documentation string for the operation.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:simpleContent>
      <xs:extension base="xs:string">
        <xs:attribute name="NumOfArguments" type="xs:integer" use="optional" default="0">
          <xs:annotation>
            <xs:documentation>The number of arguments that require values to be specified in order to show the documentation string for the operation.</xs:documentation>
          </xs:annotation>
        </xs:attribute>
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>
</xs:element>
See Also