XML Tutorial/XML Schema/nonPositiveInteger

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

The nonPositiveInteger datatype is derived from the integer type

The value space is the infinite set of integers less than and including zero. 
The lexical space is a finite-length sequence of decimal digits preceded by a -.
<!-- schema -->
<xsd:simpleType name="BC">
  <xsd:restriction base="xsd:nonPositiveInteger">
   <xsd:minInclusive value="unbounded"/>
   <xsd:maxInclusive value="-2001"/>
  </xsd:restriction>
</xsd:simpleType>
<!-- instance document -->
<BC>-1111</BC>