Package net.sf.saxon.style


package net.sf.saxon.style

This package provides classes used during the compilation of an XSLT stylesheet. The instances of these classes are discarded once compilation is complete, and they play no role in executing the transformation at run-time, except when tracing and debugging are invoked.

The class StyleElement represents an element node on the stylesheet tree. Subclasses of StyleElement represent individual stylesheet elements, and are generally named according to the XSLT element name, for example XSLApplyTemplates, XSLChoose. The class XSLStylesheet is used for the xsl:stylesheet element in each stylesheet module, and in particular for the xsl:stylesheet element in the principal stylesheet module.

During construction of the stylesheet tree, the class StyleNodeFactory is nominated to the Builder as the factory class responsible for creating element nodes on the tree. It is this class that decides which subclass of StyleElement to use for each element appearing in the stylesheet. For extension elements, the decision is delegated to a user-created ExtensionElementFactory.

Each class provides a number of methods supporting the various phases of processing. The sequence of events sometimes varies slightly, but in general the first phase is done by prepareAttributes, which performs local validation of the attributes of each instruction. The second phase is represented by the validate method, which does global validation, fixup of references, and type checking. The third phase is done by the compile method, which generates Instruction and Expression objects. Further processing (local and global optimization) is then done on these Instruction objects, and is no longer the responsibility of this package.


Michael H. Kay
Saxonica Limited
9 February 2005

  • Class
    Description
    This element is a surrogate for an extension element (or indeed an xsl element) for which no implementation is available.
    This class represents an attribute value template.
    Interface implemented by SaxonCollation, which is not available in Saxon-HE
    This element represents a top-level element in a user-defined namespace, or a child/descendant of such an element.
    The object represents a declaration (that is, a top-level element) in a stylesheet.
    An ExpressionContext represents the context for an XPath expression written in the stylesheet.
    Abstract class representing an extension instruction
    This class represents a literal result element in the style sheet (typically an HTML element to be output).
    Represents the stylesheet module at the root of the import tree, that is, the module that includes or imports all the others.
    Abstract superclass for all element nodes in the stylesheet.
    Class StyleNodeFactory.
    A StylesheetFunctionLibrary contains functions defined by the user in a stylesheet.
    A stylesheet module represents a module of a stylesheet.
    This interface is implemented by all XSL elements that can contain local variable declarations.
    This is a filter inserted into the input pipeline for processing stylesheet modules, whose task is to evaluate use-when expressions and discard those parts of the stylesheet module for which the use-when attribute evaluates to false.
    This class implements the static context used for evaluating use-when expressions in XSLT 2.0 A new instance of this class is created for each use-when expression encountered; there are therefore no issues with reusability.
    An xsl:analyze-string elements in the stylesheet.
    An xsl:apply-imports element in the stylesheet
    An xsl:apply-templates element in the stylesheet
    xsl:attribute element in stylesheet.
    An xsl:attribute-set element in the stylesheet.
    An xsl:call-template element in the stylesheet
    An xsl:character-map declaration in the stylesheet.
    An xsl:choose elements in the stylesheet.
    An xsl:comment elements in the stylesheet.
    Handler for xsl:copy elements in stylesheet.
    An xsl:copy-of element in the stylesheet.
    Handler for xsl:decimal-format elements in stylesheet.
    An xsl:document instruction in the stylesheet.
    An xsl:element element in the stylesheet.
    xsl:fallback element in stylesheet.
    Handler for xsl:for-each elements in stylesheet.
    Handler for xsl:for-each-group elements in stylesheet.
    Handler for xsl:function elements in stylesheet (XSLT 2.0).
    Abstract class to represent xsl:include or xsl:import element in the stylesheet.
    This class defines common behaviour across xsl:variable, xsl:param, and xsl:with-param
    Handler for xsl:if elements in stylesheet.
    xsl:import element in the stylesheet.
    Compile-time representation of an xsl:import-schema declaration in a stylesheet
    xsl:include element in the stylesheet.
    Handler for xsl:key elements in stylesheet.
    Common superclass for XSLT elements whose content template produces a text value: xsl:text, xsl:value-of, xsl:attribute, xsl:comment, xsl:namespace, and xsl:processing-instruction
    Handler for xsl:matching-substring and xsl:non-matching-substring elements in stylesheet.
    An xsl:message element in the stylesheet.
    An xsl:namespace element in the stylesheet.
    An xsl:namespace-alias element in the stylesheet.
    An xsl:next-match element in the stylesheet
    An xsl:number element in the stylesheet.
    Handler for xsl:otherwise elements in stylesheet.
    An xsl:output element in the stylesheet.
    An xsl:output-character element in the stylesheet.
    An xsl:param element in the stylesheet.
    Handler for xsl:perform-sort elements in stylesheet (XSLT 2.0).
    An xsl:preserve-space or xsl:strip-space elements in stylesheet.
    An xsl:processing-instruction element in the stylesheet.
    An xsl:result-document element in the stylesheet.
    An xsl:sequence element in the stylesheet.
    An xsl:sort element in the stylesheet.
     
    An xsl:stylesheet or xsl:transform element in the stylesheet.
    An xsl:template element in the style sheet.
    Handler for xsl:text elements in stylesheet.
    Extends the standard XPath static context with information that is available for XPath expressions invoked from XSLT
    An xsl:value-of element in the stylesheet.
    Handler for xsl:variable elements in stylesheet.
    Generic class for xsl:variable and xsl:param elements.
    Handler for xsl:when elements in stylesheet.
    An xsl:with-param element in the stylesheet.