XML Tutorial/XML Schema/unsignedShort

Материал из Web эксперт
Версия от 11:26, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

The unsignedShort data type is derived from the unsignedInt type.

   <source lang="xml">

The value space is the set of integers greater than or equal to 0 and less than or equal to 65535. The lexical space is a finite-length sequence of decimal digits.

<xsd:element name="shortstop">

 <xsd:simpleType>
  <xsd:restriction base="xsd:unsignedShort">
   <xsd:enumeration value="15515"/>
   <xsd:enumeration value="38860"/>
  </xsd:restriction>
 </xsd:simpleType>

</xsd:element>

<shortstop>38860</shortstop></source>