org.apache.xalan.templates |
Xalan Templates Package.
Implements the {@link javax.xml.transform.Templates} interface,
and defines a set of classes that represent an XSLT stylesheet.
{@link org.apache.xalan.templates.StylesheetRoot} implements the {@link javax.xml.transform.Templates} interface, and
extends {@link org.apache.xalan.templates.StylesheetComposed},
which is a {@link org.apache.xalan.templates.Stylesheet} composed of itself
and its included Stylesheet objects. A StylesheetRoot also contains a
global list of all imported StylesheetComposed objects. The
role of these objects is to hold immutable stylesheet data, not to perform
procedural tasks associated with the
construction of the data (the org.apache.xalan.processor package) or with the transformation (the org.apache.xalan.transformer
package).
{@link org.apache.xalan.templates.ElemTemplateElement} is the superclass of
all XSLT instruction elements, including Stylesheet. The xFunc classes
extend members of the org.apache.xpath package and implement XSLT functions. Unlike
the Stylesheet "container" objects, the
instruction element and function classes do contain procedural execute()
methods that are called during the transformation.
|
Java Source File Name | Type | Comment |
AbsPathChecker.java | Class | This class runs over a path expression that is assumed to be absolute, and
checks for variables and the like that may make it context dependent. |
AVT.java | Class | Class to hold an Attribute Value Template. |
AVTPart.java | Class | Class to hold a part, either a string or XPath,
of an Attribute Value Template. |
AVTPartSimple.java | Class | Simple string part of a complex AVT. |
AVTPartXPath.java | Class | Simple string part of a complex AVT. |
Constants.java | Class | Primary constants used in the TransformerImpl classes. |
DecimalFormatProperties.java | Class | Implement xsl:decimal-format. |
ElemApplyImport.java | Class | Implement xsl:apply-imports. |
ElemApplyTemplates.java | Class | Implement xsl:apply-templates. |
ElemAttribute.java | Class | Implement xsl:attribute. |
ElemAttributeSet.java | Class | Implement xsl:attribute-set. |
ElemCallTemplate.java | Class | Implement xsl:call-template. |
ElemChoose.java | Class | Implement xsl:choose. |
ElemComment.java | Class | Implement xsl:comment. |
ElemCopy.java | Class | Implement xsl:copy. |
ElemCopyOf.java | Class | Implement xsl:copy-of. |
ElemElement.java | Class | |
ElemEmpty.java | Class | Simple empty elem to push on the stack when nothing
else got pushed, so that pop() works correctly. |
ElemExsltFuncResult.java | Class | Handles the EXSLT result element within an EXSLT function element. |
ElemExsltFunction.java | Class | Implement func:function. |
ElemExtensionCall.java | Class | Implement an extension element. |
ElemExtensionDecl.java | Class | |
ElemExtensionScript.java | Class | |
ElemFallback.java | Class | Implement xsl:fallback. |
ElemForEach.java | Class | Implement xsl:for-each. |
ElemIf.java | Class | Implement xsl:if. |
ElemLiteralResult.java | Class | Implement a Literal Result Element. |
ElemMessage.java | Class | Implement xsl:message. |
ElemNumber.java | Class | Implement xsl:number. |
ElemOtherwise.java | Class | Implement xsl:otherwise. |
ElemParam.java | Class | Implement xsl:param. |
ElemPI.java | Class | Implement xsl:processing-instruction. |
ElemSort.java | Class | Implement xsl:sort. |
ElemTemplate.java | Class | Implement xsl:template. |
ElemTemplateElement.java | Class | An instance of this class represents an element inside
an xsl:template class. |
ElemText.java | Class | Implement xsl:template. |
ElemTextLiteral.java | Class | Implement a text literal. |
ElemUnknown.java | Class | |
ElemUse.java | Class | Implement xsl:use. |
ElemValueOf.java | Class | Implement xsl:value-of. |
ElemVariable.java | Class | Implement xsl:variable. |
ElemVariablePsuedo.java | Class | |
ElemWhen.java | Class | Implement xsl:when. |
ElemWithParam.java | Class | Implement xsl:with-param. |
FuncDocument.java | Class | Execute the Doc() function.
When the document function has exactly one argument and the argument
is a node-set, then the result is the union, for each node in the
argument node-set, of the result of calling the document function with
the first argument being the string-value of the node, and the second
argument being a node-set with the node as its only member. |
FuncFormatNumb.java | Class | Execute the FormatNumber() function. |
FuncKey.java | Class | Execute the Key() function. |
KeyDeclaration.java | Class | Holds the attribute declarations for the xsl:keys element.
A stylesheet declares a set of keys for each document using
the xsl:key element. |
NamespaceAlias.java | Class | Object to hold an xsl:namespace element. |
OutputProperties.java | Class | This class provides information from xsl:output elements. |
RedundentExprEliminator.java | Class | This class eleminates redundent XPaths from a given subtree,
and also collects all absolute paths within the subtree. |
Stylesheet.java | Class | Represents a stylesheet element. |
StylesheetComposed.java | Class | Represents a stylesheet that has methods that resolve includes and
imports. |
StylesheetRoot.java | Class | This class represents the root object of the stylesheet tree. |
TemplateList.java | Class | Encapsulates a template list, and helps locate individual templates. |
TemplateSubPatternAssociation.java | Class | A class to contain a match pattern and it's corresponding template. |
VarNameCollector.java | Class | This class visits variable refs in an XPath and collects their QNames. |
WhiteSpaceInfo.java | Class | This is used as a special "fake" template that can be
handled by the TemplateList to do pattern matching
on nodes. |
XMLNSDecl.java | Class | |
XSLTVisitable.java | Interface | A class that implements this interface will call a XSLTVisitor
for itself and members within it's heararchy. |
XSLTVisitor.java | Class | A derivation from this class can be passed to a class that implements
the XSLTVisitable interface, to have the appropriate method called
for each component of an XSLT stylesheet. |
XUnresolvedVariable.java | Class | An instance of this class holds unto a variable until
it is executed. |
XUnresolvedVariableSimple.java | Class | This is the same as XUnresolvedVariable, but it assumes that the
context is already set up. |