Uses of Class
org.apache.xalan.transformer.TransformerImpl

Packages that use TransformerImpl
org.apache.xalan.extensions Implementation of Xalan Extension Mechanism. 
org.apache.xalan.templates Implements the Templates interface, and defines a set of classes that represent an XSLT stylesheet. 
org.apache.xalan.trace Implementation of Xalan Trace events, for use by a debugger. 
org.apache.xalan.transformer In charge of run-time transformations and the production of result trees. 
 

Uses of TransformerImpl in org.apache.xalan.extensions
 

Methods in org.apache.xalan.extensions that return TransformerImpl
 TransformerImpl XSLProcessorContext.getTransformer()
          Get the transformer.
 

Methods in org.apache.xalan.extensions with parameters of type TransformerImpl
abstract  void ExtensionHandler.processElement(java.lang.String localPart, ElemTemplateElement element, TransformerImpl transformer, Stylesheet stylesheetTree, java.lang.Object methodKey)
          Process a call to this extension namespace via an element.
 void ExtensionHandlerJavaPackage.processElement(java.lang.String localPart, ElemTemplateElement element, TransformerImpl transformer, Stylesheet stylesheetTree, java.lang.Object methodKey)
          Process a call to this extension namespace via an element.
 void ExtensionHandlerGeneral.processElement(java.lang.String localPart, ElemTemplateElement element, TransformerImpl transformer, Stylesheet stylesheetTree, java.lang.Object methodKey)
          Process a call to this extension namespace via an element.
 void ExtensionHandlerJavaClass.processElement(java.lang.String localPart, ElemTemplateElement element, TransformerImpl transformer, Stylesheet stylesheetTree, java.lang.Object methodKey)
          Process a call to this extension namespace via an element.
 

Constructors in org.apache.xalan.extensions with parameters of type TransformerImpl
XSLProcessorContext.XSLProcessorContext(TransformerImpl transformer, Stylesheet stylesheetTree)
          Create a processor context to be passed to an extension.
 

Uses of TransformerImpl in org.apache.xalan.templates
 

Methods in org.apache.xalan.templates with parameters of type TransformerImpl
 void ElemTemplateElement.runtimeInit(TransformerImpl transformer)
          This function will be called on top-level elements only, just before the transform begins.
 void ElemTemplateElement.execute(TransformerImpl transformer)
          Execute the element's primary function.
 void ElemFallback.execute(TransformerImpl transformer)
          This is the normal call when xsl:fallback is instantiated.
 void ElemFallback.executeFallback(TransformerImpl transformer)
          Execute the fallback elements.
 void ElemUse.applyAttrSets(TransformerImpl transformer, StylesheetRoot stylesheet)
          Add the attributes from the named attribute sets to the attribute list.
 void ElemUse.execute(TransformerImpl transformer)
          Copy attributes specified by use-attribute-sets to the result tree.
 void ElemLiteralResult.execute(TransformerImpl transformer)
          Copy a Literal Result Element into the Result tree, copy the non-excluded namespace attributes, copy the attributes not of the XSLT namespace, and execute the children of the LRE.
 void ElemUnknown.execute(TransformerImpl transformer)
          Copy an unknown element to the result tree
 void ElemIf.execute(TransformerImpl transformer)
          Conditionally execute a sub-template.
 void ElemComment.execute(TransformerImpl transformer)
          Execute the xsl:comment transformation
 void ElemValueOf.execute(TransformerImpl transformer)
          Execute the string expression and copy the text to the result tree.
 void ElemPI.execute(TransformerImpl transformer)
          Create a processing instruction in the result tree.
 void ElemForEach.execute(TransformerImpl transformer)
          Execute the xsl:for-each transformation
 void ElemForEach.transformSelectedNodes(TransformerImpl transformer)
          **For advanced use only** Perform a query if needed, and call transformNode for each child.
 void ElemTextLiteral.execute(TransformerImpl transformer)
          Copy the text literal to the result tree.
 void ElemElement.execute(TransformerImpl transformer)
          Create an element in the result tree.
 void ElemExtensionDecl.runtimeInit(TransformerImpl transformer)
          This function will be called on top-level elements only, just before the transform begins.
 void ElemCopy.execute(TransformerImpl transformer)
          The xsl:copy element provides an easy way of copying the current node.
 void ElemCallTemplate.execute(TransformerImpl transformer)
          Invoke a named template.
 void ElemApplyTemplates.execute(TransformerImpl transformer)
          Apply the context node to the matching templates.
 void ElemApplyTemplates.transformSelectedNodes(TransformerImpl transformer)
          **For advanced use only** Perform a query if needed, and call transformNode for each child.
 void ElemChoose.execute(TransformerImpl transformer)
          Execute the xsl:choose transformation.
 void ElemVariable.execute(TransformerImpl transformer)
          Execute a variable declaration and push it onto the variable stack.
 XObject ElemVariable.getValue(TransformerImpl transformer, int sourceNode)
          Get the XObject representation of the variable.
 void ElemParam.execute(TransformerImpl transformer)
          Execute a variable declaration and push it onto the variable stack.
 void ElemTemplate.execute(TransformerImpl transformer)
          Copy the template contents into the result tree.
 void ElemCopyOf.execute(TransformerImpl transformer)
          The xsl:copy-of element can be used to insert a result tree fragment into the result tree, without first converting it to a string as xsl:value-of does (see [7.6.1 Generating Text with xsl:value-of]).
 void ElemExtensionCall.executeFallbacks(TransformerImpl transformer)
          Execute the fallbacks when an extension is not available.
 void ElemExtensionCall.execute(TransformerImpl transformer)
          Execute an extension.
 java.lang.String ElemExtensionCall.getAttribute(java.lang.String rawName, Node sourceNode, TransformerImpl transformer)
          Return the value of the attribute interpreted as an Attribute Value Template (in other words, you can use curly expressions such as href="http://{website}".
 void ElemApplyImport.execute(TransformerImpl transformer)
          Execute the xsl:apply-imports transformation.
 void ElemAttributeSet.execute(TransformerImpl transformer)
          Apply a set of attributes to the element.
 void ElemNumber.execute(TransformerImpl transformer)
          Execute an xsl:number instruction.
 void ElemAttribute.execute(TransformerImpl transformer)
          Create an attribute in the result tree.
 void ElemMessage.execute(TransformerImpl transformer)
          Send a message to diagnostics.
 XObject ElemWithParam.getValue(TransformerImpl transformer, int sourceNode)
          Get the XObject representation of the variable.
 

Constructors in org.apache.xalan.templates with parameters of type TransformerImpl
XUnresolvedVariable.XUnresolvedVariable(ElemVariable obj, int sourceNode, TransformerImpl transformer, int varStackPos, int varStackContext, boolean isGlobal)
          Create an XUnresolvedVariable, that may be executed at a later time.
 

Uses of TransformerImpl in org.apache.xalan.trace
 

Fields in org.apache.xalan.trace declared as TransformerImpl
 TransformerImpl SelectionEvent.m_processor
          The XSLT processor instance.
 TransformerImpl GenerateEvent.m_processor
          The XSLT Transformer, which either directly or indirectly contains most needed information.
 TransformerImpl TracerEvent.m_processor
          The XSLT processor instance.
 

Constructors in org.apache.xalan.trace with parameters of type TransformerImpl
SelectionEvent.SelectionEvent(TransformerImpl processor, Node sourceNode, ElemTemplateElement styleNode, java.lang.String attributeName, XPath xpath, XObject selection)
          Create an event originating at the given node of the style tree.
GenerateEvent.GenerateEvent(TransformerImpl processor, int eventType)
          Constructor for startDocument, endDocument events.
GenerateEvent.GenerateEvent(TransformerImpl processor, int eventType, java.lang.String name, Attributes atts)
          Constructor for startElement, endElement events.
GenerateEvent.GenerateEvent(TransformerImpl processor, int eventType, char[] ch, int start, int length)
          Constructor for characters, cdate events.
GenerateEvent.GenerateEvent(TransformerImpl processor, int eventType, java.lang.String name, java.lang.String data)
          Constructor for processingInstruction events.
GenerateEvent.GenerateEvent(TransformerImpl processor, int eventType, java.lang.String data)
          Constructor for comment and entity ref events.
TracerEvent.TracerEvent(TransformerImpl processor, Node sourceNode, QName mode, ElemTemplateElement styleNode)
          Create an event originating at the given node of the style tree.
EndSelectionEvent.EndSelectionEvent(TransformerImpl processor, Node sourceNode, ElemTemplateElement styleNode, java.lang.String attributeName, XPath xpath, XObject selection)
          Create an EndSelectionEvent.
TraceManager.TraceManager(TransformerImpl transformer)
          Constructor for the trace manager.
 

Uses of TransformerImpl in org.apache.xalan.transformer
 

Methods in org.apache.xalan.transformer with parameters of type TransformerImpl
 void ResultTreeHandler.init(TransformerImpl transformer, ContentHandler realHandler)
          Initializer method.
static void SerializerSwitcher.switchSerializerIfHTML(TransformerImpl transformer, java.lang.String ns, java.lang.String localName)
          Switch to HTML serializer if element is HTML
 

Constructors in org.apache.xalan.transformer with parameters of type TransformerImpl
ResultTreeHandler.ResultTreeHandler(TransformerImpl transformer, ContentHandler realHandler)
          Create a new result tree handler.
TreeWalker2Result.TreeWalker2Result(TransformerImpl transformer, ResultTreeHandler handler)
          Constructor.
TransformerHandlerImpl.TransformerHandlerImpl(TransformerImpl transformer, boolean doFragment, java.lang.String baseSystemID)
          Construct a TransformerHandlerImpl.
ClonerToResultTree.ClonerToResultTree(TransformerImpl transformer, ResultTreeHandler rth)
          Constructor ClonerToResultTree
MsgMgr.MsgMgr(TransformerImpl transformer)
          Create a message manager object.
 



Copyright © 2001 Apache XML Project. All Rights Reserved.