XML Tutorial/XML Schema/ENTITIES

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

The ENTITIES data type is derived from the ENTITY type.

The value space is the set of finite-, nonzero-length sequences of entities. 
The lexical space is the white-space-separated list of entities. 
The value of ENTITIES must match the set of unparsed entity names declared in notation elements in the schema.
<!-- schema -->
<xsd:simpleType name="imageTypes">
  <xsd:restriction base="xsd:ENTITIES">
   <xsd:enumeration value="jpg"/>
   <xsd:enumeration value="gif"/>
   <xsd:enumeration value="png"/>
  </xsd:restriction>
</xsd:simpleType>
<!-- instance document -->
<gallery images="jpg gif png">Online_Brochure</gallery>