<memberOf>

<memberOf> specifies class membership of the parent element or class.
Moduletagdocs — 22 Documentation Elements
AttributesIn addition to global attributes
keyspecifies the identifier for a class of which the documented element or class is a member or subclass
Status Optional
Datatype

<rng:ref name="data.name"/>
data.name
modespecifies the effect of this declaration on its parent module.
Status Optional
Legal values are:
add
this declaration is added to the current definitions [Default]
delete
this declaration and all of its children are removed from the current setup
Used by
May contain
gaiji: g
Declaration

<rng:element name="memberOf">
<rng:ref name="att.global.attributes"/>
<rng:optional>
 <rng:attribute name="key">
  <rng:ref name="data.name"/>
 </rng:attribute>
</rng:optional>
<rng:optional>
 <rng:attribute name="modea:defaultValue="add">
  <rng:choice>
   <rng:value>add</rng:value>
   <rng:value>delete</rng:value>
  </rng:choice>
 </rng:attribute>
</rng:optional>
<rng:ref name="macro.xtext"/>
</rng:element>
element memberOf
{
   att.global.attributes,
   attribute key { data.name }?,
   attribute mode { "add" | "delete" }?,
   macro.xtext
}
Example
<memberOf key="model.divLike"/>
<memberOf key="att.identified"/>

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

Note
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.