<paramSpec>

<paramSpec> supplies specification for one parameter of a model behaviour [22.5.5.8 Defining a processing model]
Moduletagdocs — Documentation Elements
Attributesatt.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.analytic (@ana)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.identified (@ident, @predeclare, @module) (att.combinable (@mode) (att.deprecated (@validUntil)) )
Contained by
tagdocs: paramList
May contain
core: desc gloss
tagdocs: altIdent equiv
Note

Where a model behaviour uses more than one parameter, individual paramSpec elements should be grouped together using a paramList element, as above. Parameter specifications are provided within the valItem used to define a particular behaviour, which forms part of the specification of a model element's behaviour attribute. In the example above, the behaviour link has two parameters: content and link.

Using a desc element within a paramSpec is optional but recommended practice.

Example
<valItem ident="link">
 <desc>create a hyperlink</desc>
 <paramList>
  <paramSpec ident="content">
   <desc>supplies the location of some content describing the link</desc>
  </paramSpec>
  <paramSpec ident="link">
   <desc>supplies the location of the intended URL</desc>
  </paramSpec>
 </paramList>
</valItem>
Content model
<content>
 <alternate minOccurs="0"
  maxOccurs="unbounded">

  <classRef key="model.glossLike"/>
  <classRef key="model.descLike"/>
 </alternate>
</content>
Schema Declaration
<rng:element name="paramSpec">
 <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:ref name="att.identified.attributes"/>
 <rng:ref name="att.combinable.attributes"/>
 <rng:ref name="att.deprecated.attributes"/>
 <rng:zeroOrMore>
  <rng:choice>
   <rng:ref name="model.glossLike"/>
   <rng:ref name="model.descLike"/>
  </rng:choice>
 </rng:zeroOrMore>
</rng:element>
element paramSpec
{
   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,
   att.identified.attributes,
   att.combinable.attributes,
   att.deprecated.attributes,
   ( model.glossLike | model.descLike )*
}