<classes>

<classes> (classes) indica tutte le classi delle quali l'elemento o la classe indicati sono un membro o una sottoclasse [22.5 Element Specifications 22.6 Class Specifications]
Modulo tagdocs — Documentation Elements
Attributi
mode⚓︎ indica l'effetto della dichiarazione sul modulo da cui trae origine
Stato Opzionale
Tipo di dati teidata.enumerated
I valori legali sono:
change
la dichiarazione modifica la dichiarazione con lo stesso nome nella definizione corrente
replace
la dichiarazione sostituisce la dichiarazione con lo stesso nome nella definizione corrente [Valore di default]
Contenuto in
Può contenere
tagdocs: memberOf
Nota

An empty classes element indicates that the element documented is not a member of any class. This should not generally happen.

Esempio
<classes>
 <memberOf key="model.attributable"/>
 <memberOf key="att.declarable"/>
</classes>

This classes element indicates that the element documented (which may be an element or a class) is a member of two distinct classes: model.attributable and att.declarable.

Content model
<content>
 <elementRef key="memberOfminOccurs="0"
  maxOccurs="unbounded"/>

</content>
Dichiarazione
<rng:element name="classes">
 <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="mode"
   a:defaultValue="replace">

   <rng:choice>
    <rng:value>change</rng:value>
    <rng:value>replace</rng:value>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:zeroOrMore>
  <rng:ref name="memberOf"/>
 </rng:zeroOrMore>
</rng:element>
element classes
{
   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 mode { "change" | "replace" }?,
   memberOf*
}