<memberOf>

<memberOf> specifica l'appartenenza a una classe dell'elemento o classe genitori [22.4.3 Classification of Components]
Modulo tagdocs — Documentation Elements
Attributi
key⚓︎ indica l'identificatore di una classe di cui l'elemento o classe indicati sono un membro o una sottoclasse
Stato Opzionale
Tipo di dati teidata.name
mode⚓︎ specifica l'effetto della dichiarazione sul modulo genitore
Stato Opzionale
Tipo di dati teidata.enumerated
I valori legali sono:
add
la dichiarazione è aggiunta alle definizioni correnti [Valore di default]
delete
la dichiarazione e i suoi discendenti sono esclusi dall'impostazione corrente
max⚓︎ supplies the maximum number of times the element can occur in elements which use this model class in their content model
Stato Opzionale
Tipo di dati teidata.numeric
min⚓︎ supplies the minumum number of times the element must occur in elements which use this model class in their content model
Stato Opzionale
Tipo di dati teidata.numeric
Contenuto in
tagdocs: classes
Può contenere
gaiji: g
caratteri di testo
Nota

Elements or classes which are members of multiple (unrelated) classes will have more than one memberOf element, grouped by a classes element. If an element is a member of a class C1, which is itself a subclass of a class C2, there is no need to state this, other than in the documentation for class C1.

Any additional comment or explanation of the class membership may be provided as content for this element.

Esempio
<memberOf key="model.divLike"/>
<memberOf key="att.identified"/>

This element will appear in any content model which references model.divLike, and will have attributes defined in att.identified (in addition to any defined explicitly for this element).

Content model
<content>
 <macroRef key="macro.xtext"/>
</content>
Dichiarazione
<rng:element name="memberOf">
 <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="key">
   <rng:ref name="teidata.name"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="mode"
   a:defaultValue="add">

   <rng:choice>
    <rng:value>add</rng:value>
    <rng:value>delete</rng:value>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="max">
   <rng:ref name="teidata.numeric"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="min">
   <rng:ref name="teidata.numeric"/>
  </rng:attribute>
 </rng:optional>
 <rng:ref name="macro.xtext"/>
</rng:element>
element memberOf
{
   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 key { teidata.name }?,
   attribute mode { "add" | "delete" }?,
   attribute max { teidata.numeric }?,
   attribute min { teidata.numeric }?,
   macro.xtext
}