jd.xml.xslt.template
Class NumberTemplate

java.lang.Object
  extended byjd.xml.xslt.template.Template
      extended byjd.xml.xslt.template.NumberTemplate

public class NumberTemplate
extends Template

NumberTemplate represents the Number element:

 <xsl:number
  level = "single" | "multiple" | "any"
  count = pattern
  from = pattern
  value = number-expression
  format = { string }
  lang = { nmtoken }
  letter-value = { "alphabetic" | "traditional" }
  grouping-separator = { char }
  grouping-size = { number }
 />
 


Constructor Summary
NumberTemplate(Numbering numbering)
          Create a NumberTemplate.
 
Method Summary
 void accept(TemplateVisitor visitor)
           
 void instantiate(XsltContext context, ResultBuilder resultBuilder)
          In the absence of a select attribute, the xsl:apply-templates instruction processes all of the children of the current node
 
Methods inherited from class jd.xml.xslt.template.Template
addChild, addNext, allowTailRecursion, getNext, getParent, instantiate, instantiate, toString, transferRelations
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NumberTemplate

public NumberTemplate(Numbering numbering)
Create a NumberTemplate.

Method Detail

accept

public void accept(TemplateVisitor visitor)
Specified by:
accept in class Template

instantiate

public void instantiate(XsltContext context,
                        ResultBuilder resultBuilder)
In the absence of a select attribute, the xsl:apply-templates instruction processes all of the children of the current node

Specified by:
instantiate in class Template