Package org.apache.xalan.templates
Class TemplateList
java.lang.Object
org.apache.xalan.templates.TemplateList
- All Implemented Interfaces:
Serializable
Encapsulates a template list, and helps locate individual templates.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionclass
An inner class used by a compiler to iterate over all of the ElemTemplates stored in this TemplateList. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
compose
(StylesheetRoot sroot) After all templates have been added, this function should be called.org.apache.xalan.templates.TemplateSubPatternAssociation
getHead
(XPathContext xctxt, int targetNode, DTM dtm) Get the head of the most likely list of associations to check, based on the name and type of the targetNode argument.getTemplate
(QName qname) Locate a named template.getTemplate
(XPathContext xctxt, int targetNode, QName mode, boolean quietConflictWarnings, DTM dtm) Given a target element, find the template that best matches in the given XSL document, according to the rules specified in the xsl draft.getTemplate
(XPathContext xctxt, int targetNode, QName mode, int maxImportLevel, int endImportLevel, boolean quietConflictWarnings, DTM dtm) Given a target element, find the template that best matches in the given XSL document, according to the rules specified in the xsl draft.getTemplateFast
(XPathContext xctxt, int targetNode, int expTypeID, QName mode, int maxImportLevel, boolean quietConflictWarnings, DTM dtm) Given a target element, find the template that best matches in the given XSL document, according to the rules specified in the xsl draft.Get a TemplateWalker for use by a compiler.void
setTemplate
(ElemTemplate template) Add a template to the table of named templates and/or the table of templates with match patterns.
-
Constructor Details
-
TemplateList
public TemplateList()Construct a TemplateList object. Needs to be public so it can be invoked from the CompilingStylesheetHandler.
-
-
Method Details
-
setTemplate
Add a template to the table of named templates and/or the table of templates with match patterns. This routine should be called in decreasing order of precedence but it checks nonetheless.- Parameters:
template
-
-
compose
After all templates have been added, this function should be called. -
getTemplate
Locate a named template.- Parameters:
qname
- Qualified name of the template.- Returns:
- Template argument with the requested name, or null if not found.
-
getHead
public org.apache.xalan.templates.TemplateSubPatternAssociation getHead(XPathContext xctxt, int targetNode, DTM dtm) Get the head of the most likely list of associations to check, based on the name and type of the targetNode argument.- Parameters:
xctxt
- The XPath runtime context.targetNode
- The target node that will be checked for a match.dtm
- The dtm owner for the target node.- Returns:
- The head of a linked list that contains all possible match pattern to template associations.
-
getTemplateFast
public ElemTemplate getTemplateFast(XPathContext xctxt, int targetNode, int expTypeID, QName mode, int maxImportLevel, boolean quietConflictWarnings, DTM dtm) throws TransformerException Given a target element, find the template that best matches in the given XSL document, according to the rules specified in the xsl draft. This variation of getTemplate assumes the current node and current expression node have already been pushed.- Parameters:
xctxt
-targetNode
-mode
- A string indicating the display mode.maxImportLevel
- The maximum importCountComposed that we should consider or -1 if we should consider all import levels. This is used by apply-imports to access templates that have been overridden.quietConflictWarnings
-- Returns:
- Rule that best matches targetElem.
- Throws:
XSLProcessorException
- thrown if the active ProblemListener and XPathContext decide the error condition is severe enough to halt processing.TransformerException
-
getTemplate
public ElemTemplate getTemplate(XPathContext xctxt, int targetNode, QName mode, boolean quietConflictWarnings, DTM dtm) throws TransformerException Given a target element, find the template that best matches in the given XSL document, according to the rules specified in the xsl draft.- Parameters:
xctxt
-targetNode
-mode
- A string indicating the display mode.quietConflictWarnings
-- Returns:
- Rule that best matches targetElem.
- Throws:
XSLProcessorException
- thrown if the active ProblemListener and XPathContext decide the error condition is severe enough to halt processing.TransformerException
-
getTemplate
public ElemTemplate getTemplate(XPathContext xctxt, int targetNode, QName mode, int maxImportLevel, int endImportLevel, boolean quietConflictWarnings, DTM dtm) throws TransformerException Given a target element, find the template that best matches in the given XSL document, according to the rules specified in the xsl draft.- Parameters:
xctxt
-targetNode
-mode
- A string indicating the display mode.maxImportLevel
- The maximum importCountComposed that we should consider or -1 if we should consider all import levels. This is used by apply-imports to access templates that have been overridden.endImportLevel
- The count of composed importsquietConflictWarnings
-- Returns:
- Rule that best matches targetElem.
- Throws:
XSLProcessorException
- thrown if the active ProblemListener and XPathContext decide the error condition is severe enough to halt processing.TransformerException
-
getWalker
Get a TemplateWalker for use by a compiler. See the documentation for the TreeWalker inner class for further details.
-