Tabnine Logo
TransformerImpl.getResultTreeHandler
Code IndexAdd Tabnine to your IDE (free)

How to use
getResultTreeHandler
method
in
org.apache.xalan.transformer.TransformerImpl

Best Java code snippets using org.apache.xalan.transformer.TransformerImpl.getResultTreeHandler (Showing top 20 results out of 315)

origin: robovm/robovm

/**
 * Execute an xsl:number instruction. The xsl:number element is
 * used to insert a formatted number into the result tree.
 *
 * @param transformer non-null reference to the the current transform-time state.
 *
 * @throws TransformerException
 */
public void execute(
    TransformerImpl transformer)
     throws TransformerException
{
 int sourceNode = transformer.getXPathContext().getCurrentNode();
 String countString = getCountString(transformer, sourceNode);
 try
 {
  transformer.getResultTreeHandler().characters(countString.toCharArray(),
                         0, countString.length());
 }
 catch(SAXException se)
 {
  throw new TransformerException(se);
 }
}
origin: robovm/robovm

SerializationHandler rhandler = transformer.getResultTreeHandler();
int n = m_prefixTable.size();
origin: xalan/xalan

SerializationHandler rhandler = transformer.getResultTreeHandler();
int n = m_prefixTable.size();
origin: robovm/robovm

/**
 * Execute the xsl:comment transformation 
 *
 *
 * @param transformer non-null reference to the the current transform-time state.
 *
 * @throws TransformerException
 */
public void execute(
    TransformerImpl transformer)
     throws TransformerException
{
 try
 {
  // Note the content model is:
  // <!ENTITY % instructions "
  // %char-instructions;
  // | xsl:processing-instruction
  // | xsl:comment
  // | xsl:element
  // | xsl:attribute
  // ">
  String data = transformer.transformToString(this);
  transformer.getResultTreeHandler().comment(data);
 }
 catch(org.xml.sax.SAXException se)
 {
  throw new TransformerException(se);
 }
}
origin: robovm/robovm

SerializationHandler rhandler = transformer.getResultTreeHandler();
int n = m_prefixTable.size();
origin: xalan/xalan

SerializationHandler rhandler = transformer.getResultTreeHandler();
int n = m_prefixTable.size();
origin: robovm/robovm

SerializationHandler rth = transformer.getResultTreeHandler();
origin: xalan/xalan

transformer.getResultTreeHandler().characters(countString.toCharArray(),
                       0, countString.length());
origin: xalan/xalan

SerializationHandler rth = transformer.getResultTreeHandler();
if (transformer.getDebug()) {
   transformer.getResultTreeHandler().flushPending();
   transformer.getTraceManager().fireTraceEndEvent(this);
origin: xalan/xalan

transformer.getResultTreeHandler().comment(data);
origin: robovm/robovm

transformer.getResultTreeHandler().processingInstruction(piName, data);
origin: robovm/robovm

SerializationHandler rhandler = transformer.getResultTreeHandler();
origin: xalan/xalan

SerializationHandler rhandler = transformer.getResultTreeHandler();
origin: robovm/robovm

SerializationHandler rth = transformer.getResultTreeHandler();
origin: xalan/xalan

transformer.getResultTreeHandler().processingInstruction(piName, data);
origin: xalan/xalan

SerializationHandler rtf = transformer.getResultTreeHandler();
origin: robovm/robovm

transformer.getResultTreeHandler().endElement(ns, localName,
                       dtm.getNodeName(sourceNode));
origin: xalan/xalan

SerializationHandler rtf = transformer.getResultTreeHandler();
origin: xalan/xalan

transformer.getResultTreeHandler().endElement(ns, localName,
                       dtm.getNodeName(sourceNode));
origin: robovm/robovm

transformer.getResultTreeHandler().flushPending();
org.apache.xalan.transformerTransformerImplgetResultTreeHandler

Javadoc

Get the SerializationHandler object.

Popular methods of TransformerImpl

  • executeChildTemplates
    Execute each of the children of a template element.
  • getMsgMgr
    Return the message manager.
  • getOutputFormat
    Get the output properties used for the transformation.
  • getOutputPropertyNoDefault
    Get the value of a property, without using the default properties. This can be used to test if a pro
  • getXPathContext
    Get the XPath context associated with this transformer.
  • setContentHandler
    Set the content event handler. NEEDSDOC @param handler
  • <init>
    Construct a TransformerImpl.
  • applyTemplateToNode
    Given an element and mode, find the corresponding template and process the contents.
  • clearParameters
    Reset the parameters to a null list.
  • createSerializationHandler
  • currentFuncResultSeen
    Determines whether an EXSLT func:result instruction has been executed for the currently active EXSLT
  • currentTemplateRuleIsNull
    Tell if the current template rule is null, i.e. if we are directly within an apply-templates. Used f
  • currentFuncResultSeen,
  • currentTemplateRuleIsNull,
  • fatalError,
  • getContentHandler,
  • getContextNodeList,
  • getCountersTable,
  • getCurrentElement,
  • getCurrentNode,
  • getCurrentTemplate,
  • getErrorListener

Popular in Java

  • Finding current android device location
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • addToBackStack (FragmentTransaction)
  • scheduleAtFixedRate (Timer)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • JList (javax.swing)
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now