<altGrp>

<altGrp> (gruppo di alternanza) raggruppa un insieme di elementi alt ed eventuali puntatori 16.8 Alternation
Modulo linking — 16 Linking, Segmentation, and Alignment
Oltre agli attributi globali att.pointing.group (@domains, @targFunc) (att.pointing (@target, @evaluate)) (att.typed (@type, @subtype))
mode dichiara se le alternative contenute nell'insieme sono esclusive o inclusive
Stato Opzionale
I valori legali sono:
excl
(esclusivo) indica che l'alternanza è esclusiva, cioè che compare solo una delle possibili alternative [Valore di default]
incl
(inclusivo) indica che l'alternanza non è esclusiva, cioè che possono comparire più alternative
Usato da
Può contenere
core: ptr
linking: alt
Dichiarazione

<rng:element name="altGrp">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.pointing.group.attributes"/>
 <rng:ref name="att.pointing.attributes"/>
 <rng:ref name="att.typed.attributes"/>
 <rng:optional>
  <rng:attribute name="mode" a:defaultValue="excl">
   <rng:choice>
    <rng:value>excl</rng:value>
    <rng:value>incl</rng:value>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:zeroOrMore>
  <rng:choice>
   <rng:ref name="alt"/>
   <rng:ref name="ptr"/>
  </rng:choice>
 </rng:zeroOrMore>
</rng:element>
element altGrp
{
   att.global.attributes,
   att.pointing.group.attributes,
   att.pointing.attributes,
   att.typed.attributes,
   attribute mode { "excl" | "incl" }?,
   ( alt | ptr )*
}
Esempio
<altGrp mode="excl">
 <alt targets="#dm #lt #bb" weights="0.5 0.25 0.25"/>
 <alt targets="#rl #db" weights="0.5 0.5"/>
</altGrp>
Esempio
<altGrp mode="incl">
 <alt targets="#dm #rl" weights="0.90 0.90"/>
 <alt targets="#lt #rl" weights="0.5 0.5"/>
 <alt targets="#bb #rl" weights="0.5 0.5"/>
 <alt targets="#dm #db" weights="0.10 0.10"/>
 <alt targets="#lt #db" weights="0.45 0.90"/>
 <alt targets="#bb #db" weights="0.45 0.90"/>
</altGrp>