亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

XML Schema documentation 元素

定義和用法

documentation 元素在 schema 中輸入文本注釋。該元素必須位于 annotation 元素內(nèi)。

元素信息

出現(xiàn)次數(shù) 無限制
父元素 annotation
內(nèi)容 任何格式正確的 XML 內(nèi)容。

語法

<documentation
source=URI reference
xml:lang=language
>

Any well-formed XML content

</documentation>
屬性 描述
source 可選。規(guī)定應(yīng)用程序信息的來源。
xml:lang 可選。規(guī)定內(nèi)容中使用的語言。

實例

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:annotation>
  <xs:appInfo>W3School Note</xs:appInfo>
  <xs:documentation xml:lang="en">
  This Schema defines a W3School note!
  </xs:documentation>
</xs:annotation>

.
.
.

</xs:schema>