<classes>

<classes> specifies all the classes of which the documented element or class is a member or subclass. 22.4.4 Element Specifications 22.4.6 Element Classes
Module tagdocs — 22 Documentation Elements
In addition to global attributes In addition to global attributes
mode specifies the effect of this declaration on its parent module.
Status Optional
Legal values are:
change
this declaration changes the declaration of the same name in the current definition
replace
this declaration replaces the declaration of the same name in the current definition [Default]
Used by
May contain
tagdocs: memberOf
Declaration

<rng:element name="classes">
 <rng:ref name="att.global.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:choice>
  <rng:zeroOrMore>
   <rng:ref name="memberOf"/>
  </rng:zeroOrMore>
 </rng:choice>
</rng:element>
element classes
{
   att.global.attributes,
   attribute mode { "change" | "replace" }?,
   ( memberOf* )
}
Example
<classes>
 <memberOf key="model.qLike"/>
 <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.qLike and att.declarable.

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