<iNode>

<iNode> (intermediate (or internal) node) represents an intermediate (or internal) node of a tree. 19.2 Trees
Modul nets — 19 Graphs, Networks, and Trees
Neben global gültigen Attributen
value provides the value of an intermediate node, which is a feature structure or other analytic element.
Zustand Empfohlen wenn zutreffend
Datentyp

<rng:ref name="data.pointer"/>
data.pointer
Werte A valid identifier of a feature structure or other analytic element.
children provides a list of identifiers of the elements which are the children of the intermediate node.
Zustand Obligatorisch
Datentyp 1–∞ Vorkommen von 

<rng:ref name="data.pointer"/>
data.pointer
Durch Leerzeichen getrennt
Werte A list of identifiers.
parent provides the identifier of the element which is the parent of this node.
Zustand Optional
Datentyp

<rng:ref name="data.pointer"/>
data.pointer
Werte The identifier of the parent node.
ord (ordered) indicates whether or not the internal node is ordered.
Zustand Optional
Datentyp

<rng:ref name="data.xTruthValue"/>
data.xTruthValue
follow provides an identifier of the element which this node follows.
Zustand Empfohlen wenn zutreffend
Datentyp

<rng:ref name="data.pointer"/>
data.pointer
Werte The identifier of another intermediate node or leaf of the tree.
outDegree gives the out degree of an intermediate node, the number of its children.
Zustand Optional
Datentyp

<rng:ref name="data.count"/>
data.count
Werte A nonnegative integer.
Verwendet von
Kann enthalten
core: label
Deklaration

<rng:element name="iNode">
 <rng:ref name="att.global.attributes"/>
 <rng:optional>
  <rng:attribute name="value">
   <rng:ref name="data.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:attribute name="children">
  <rng:list>
   <rng:oneOrMore>
    <rng:ref name="data.pointer"/>
   </rng:oneOrMore>
  </rng:list>
 </rng:attribute>
 <rng:optional>
  <rng:attribute name="parent">
   <rng:ref name="data.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="ord">
   <rng:ref name="data.xTruthValue"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="follow">
   <rng:ref name="data.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="outDegree">
   <rng:ref name="data.count"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:ref name="label"/>
 </rng:optional>
</rng:element>
element iNode
{
   att.global.attributes,
   attribute value { data.pointer }?,
   attribute children { list { data.pointer+ } },
   attribute parent { data.pointer }?,
   attribute ord { data.xTruthValue }?,
   attribute follow { data.pointer }?,
   attribute outDegree { data.count }?,
   label?
}
Beispiel
<iNode
  xml:id="pt1"
  children="#GD-UP1"
  parent="#GD-VB1"
  follow="#GD-PN1"
  outDegree="1">

 <label>PT</label>
</iNode>