<root>

<root> (root node) 木の根要素を示す。 [19.2 Trees]
モジュール nets — Graphs, Networks, and Trees
属性
value⚓︎ 当該根要素の値絵お示す。これは、素性構造または他の分析要素となる。
状態 任意
データ型 teidata.pointer
children⚓︎ 当該根要素の子要素となる要素の識別子のリストを示す。
状態 必須
データ型 1–∞ occurrences of teidata.pointer 空白文字で区切られる
解説

当該根要素が子要素を持たない場合、属性childrenは必 ず省略される。技術的な理由から、<root children=''>の 様には定義できない。

ord⚓︎ (ordered) 当該根要素が、順序付きかどうかを示す。
状態 任意
データ型 teidata.xTruthValue
解説

属性値trueは、当該根要素の子要素が順序付きであるこ とを示し、属性値falseは、順序付きでないことを示す。

要素treeの属性ordの値がpartial で、当該根要素が複数の子要素を持つ場合にのみ、使用される。

outDegree⚓︎ 当該根要素の出の次数、すなわち子要素の数を示す。
状態 任意
データ型 teidata.count
解説

当該根要素の入りの次数は、常に0。

上位
nets: tree
下位
core: label
<root xml:id="vp1children="#vb1 #pn1"
 outDegree="2">

 <label>VP</label>
</root>
<leaf xml:id="vb1"/>
<leaf xml:id="pn1"/>
Content model
<content>
 <elementRef key="labelminOccurs="0"/>
</content>
宣言
<rng:element name="root">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.global.rendition.attributes"/>
 <rng:ref name="att.global.linking.attributes"/>
 <rng:ref name="att.global.analytic.attributes"/>
 <rng:ref name="att.global.facs.attributes"/>
 <rng:ref name="att.global.change.attributes"/>
 <rng:ref name="att.global.responsibility.attributes"/>
 <rng:ref name="att.global.source.attributes"/>
 <rng:optional>
  <rng:attribute name="value">
   <rng:ref name="teidata.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:attribute name="children">
  <rng:list>
   <rng:oneOrMore>
    <rng:ref name="teidata.pointer"/>
   </rng:oneOrMore>
  </rng:list>
 </rng:attribute>
 <rng:optional>
  <rng:attribute name="ord">
   <rng:ref name="teidata.xTruthValue"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="outDegree">
   <rng:ref name="teidata.count"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:ref name="label"/>
 </rng:optional>
</rng:element>
element root
{
   att.global.attributes,
   att.global.rendition.attributes,
   att.global.linking.attributes,
   att.global.analytic.attributes,
   att.global.facs.attributes,
   att.global.change.attributes,
   att.global.responsibility.attributes,
   att.global.source.attributes,
   attribute value { teidata.pointer }?,
   attribute children { list { teidata.pointer+ } },
   attribute ord { teidata.xTruthValue }?,
   attribute outDegree { teidata.count }?,
   label?
}