|
||||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |
Templates
interface,
and defines a set of classes that represent an XSLT stylesheet.
See:
Description
Class Summary | |
AVT | **For advanced use only** Class to hold an Attribute Value Template. |
AVTPart | **For internal use only** Class to hold a part, either a string or XPath, of an Attribute Value Template. |
AVTPartSimple | **For internal use only** Simple string part of a complex AVT. |
AVTPartXPath | **For internal use only** Simple string part of a complex AVT. |
Constants | **For advanced use only** Primary constants used in the TransformerImpl classes. |
DecimalFormatProperties | **For advanced use only** Implement xsl:decimal-format. |
ElemApplyImport | **For advanced use only** Implement xsl:apply-imports. |
ElemApplyTemplates | **For advanced use only** Implement xsl:apply-templates. |
ElemAttribute | **For advanced use only** Implement xsl:attribute. |
ElemAttributeSet | **For advanced use only** Implement xsl:attribute-set. |
ElemCallTemplate | **For advanced use only** Implement xsl:call-template. |
ElemChoose | **For advanced use only** Implement xsl:choose. |
ElemComment | **For advanced use only** Implement xsl:comment. |
ElemCopy | **For advanced use only** Implement xsl:copy. |
ElemCopyOf | **For advanced use only** Implement xsl:copy-of. |
ElemElement | **For advanced use only** Implement xsl:element |
ElemEmpty | **For internal use only** Simple empty elem to push on the stack when nothing else got pushed, so that pop() works correctly. |
ElemExtensionCall | **For advanced use only** Implement an extension element. |
ElemExtensionDecl | **For internal use only** Implement the declaration of an extension element |
ElemExtensionScript | **For internal use only** Implement Script extension element |
ElemFallback | **For advanced use only** Implement xsl:fallback. |
ElemForEach | **For advanced use only** Implement xsl:for-each. |
ElemIf | **For advanced use only** Implement xsl:if. |
ElemLiteralResult | **For advanced use only** Implement a Literal Result Element. |
ElemMessage | **For advanced use only** Implement xsl:message. |
ElemNumber | **For advanced use only** Implement xsl:number. |
ElemOtherwise | **For advanced use only** Implement xsl:otherwise. |
ElemParam | **For advanced use only** Implement xsl:param. |
ElemPI | **For advanced use only** Implement xsl:processing-instruction. |
ElemSort | **For advanced use only** Implement xsl:sort. |
ElemTemplate | **For advanced use only** Implement xsl:template. |
ElemTemplateElement | **For advanced use only** An instance of this class represents an element inside an xsl:template class. |
ElemText | **For advanced use only** Implement xsl:template. |
ElemTextLiteral | **For advanced use only** Implement a text literal. |
ElemUnknown | **For advanced use only** Implement a Literal Result Element. |
ElemUse | **For advanced use only** Implement xsl:use. |
ElemValueOf | **For advanced use only** Implement xsl:value-of. |
ElemVariable | **For advanced use only** Implement xsl:variable. |
ElemWhen | **For advanced use only** Implement xsl:when. |
ElemWithParam | **For advanced use only** Implement xsl:with-param. |
FuncDocument | **For advanced use only** Execute the Doc() function. |
FuncFormatNumb | **For advanced use only** Execute the FormatNumber() function. |
FuncKey | **For advanced use only** Execute the Key() function. |
KeyDeclaration | **For internal use only** Holds the attribute declarations for the xsl:keys element. |
NamespaceAlias | Object to hold an xsl:namespace element. |
OutputProperties | This class provides information from xsl:output elements. |
Stylesheet | Represents a stylesheet element. |
StylesheetComposed | Represents a stylesheet that has methods that resolve includes and imports. |
StylesheetRoot | This class represents the root object of the stylesheet tree. |
TemplateList | **For advanced use only** Encapsulates a template list, and helps locate individual templates. |
WhiteSpaceInfo | This is used as a special "fake" template that can be handled by the TemplateList to do pattern matching on nodes. |
XMLNSDecl | Represents an xmlns declaration |
XUnresolvedVariable | An instance of this class holds unto a variable until it is executed. |
Implements the Templates
interface,
and defines a set of classes that represent an XSLT stylesheet.
StylesheetRoot
implements the Templates
interface, and
extends StylesheetComposed
,
which is a 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).
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.
|
||||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |