congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
TransformerImpl.transformToRTF
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: robovm/robovm

/**
 * Given a stylesheet element, create a result tree fragment from it's
 * contents. The fragment will be built within the shared RTF DTM system
 * used as a variable stack.
 * @param templateParent The template element that holds the fragment.
 * @return the NodeHandle for the root node of the resulting RTF.
 *
 * @throws TransformerException
 * @xsl.usage advanced
 */
public int transformToRTF(ElemTemplateElement templateParent)
    throws TransformerException
{
 // Retrieve a DTM to contain the RTF. At this writing, this may be a
 // multi-document DTM (SAX2RTFDTM).
 DTM dtmFrag = m_xcontext.getRTFDTM();
 return transformToRTF(templateParent,dtmFrag);
}

origin: robovm/robovm

/**
 * Given a stylesheet element, create a result tree fragment from it's
 * contents. The fragment will also use the shared DTM system, but will
 * obtain its space from the global variable pool rather than the dynamic
 * variable stack. This allows late binding of XUnresolvedVariables without
 * the risk that their content will be discarded when the variable stack
 * is popped.
 * 
 * @param templateParent The template element that holds the fragment.
 * @return the NodeHandle for the root node of the resulting RTF.
 *
 * @throws TransformerException
 * @xsl.usage advanced
 */
public int transformToGlobalRTF(ElemTemplateElement templateParent)
    throws TransformerException
{
 // Retrieve a DTM to contain the RTF. At this writing, this may be a
 // multi-document DTM (SAX2RTFDTM).
 DTM dtmFrag = m_xcontext.getGlobalRTFDTM();
 return transformToRTF(templateParent,dtmFrag);
}

origin: xalan/xalan

/**
 * Given a stylesheet element, create a result tree fragment from it's
 * contents. The fragment will be built within the shared RTF DTM system
 * used as a variable stack.
 * @param templateParent The template element that holds the fragment.
 * @return the NodeHandle for the root node of the resulting RTF.
 *
 * @throws TransformerException
 * @xsl.usage advanced
 */
public int transformToRTF(ElemTemplateElement templateParent)
    throws TransformerException
{
 // Retrieve a DTM to contain the RTF. At this writing, this may be a
 // multi-document DTM (SAX2RTFDTM).
 DTM dtmFrag = m_xcontext.getRTFDTM();
 return transformToRTF(templateParent,dtmFrag);
}
 
origin: xalan/xalan

/**
 * Given a stylesheet element, create a result tree fragment from it's
 * contents. The fragment will also use the shared DTM system, but will
 * obtain its space from the global variable pool rather than the dynamic
 * variable stack. This allows late binding of XUnresolvedVariables without
 * the risk that their content will be discarded when the variable stack
 * is popped.
 * 
 * @param templateParent The template element that holds the fragment.
 * @return the NodeHandle for the root node of the resulting RTF.
 *
 * @throws TransformerException
 * @xsl.usage advanced
 */
public int transformToGlobalRTF(ElemTemplateElement templateParent)
    throws TransformerException
{
 // Retrieve a DTM to contain the RTF. At this writing, this may be a
 // multi-document DTM (SAX2RTFDTM).
 DTM dtmFrag = m_xcontext.getGlobalRTFDTM();
 return transformToRTF(templateParent,dtmFrag);
}
 
origin: robovm/robovm

int df = transformer.transformToRTF(this);
origin: robovm/robovm

  df = transformer.transformToGlobalRTF(this);
else
  df = transformer.transformToRTF(this);
origin: xalan/xalan

int df = transformer.transformToRTF(this);
origin: xalan/xalan

  df = transformer.transformToGlobalRTF(this);
else
  df = transformer.transformToRTF(this);
origin: com.gluonhq/robovm-rt

/**
 * Given a stylesheet element, create a result tree fragment from it's
 * contents. The fragment will be built within the shared RTF DTM system
 * used as a variable stack.
 * @param templateParent The template element that holds the fragment.
 * @return the NodeHandle for the root node of the resulting RTF.
 *
 * @throws TransformerException
 * @xsl.usage advanced
 */
public int transformToRTF(ElemTemplateElement templateParent)
    throws TransformerException
{
 // Retrieve a DTM to contain the RTF. At this writing, this may be a
 // multi-document DTM (SAX2RTFDTM).
 DTM dtmFrag = m_xcontext.getRTFDTM();
 return transformToRTF(templateParent,dtmFrag);
}

origin: FlexoVM/flexovm

/**
 * Given a stylesheet element, create a result tree fragment from it's
 * contents. The fragment will be built within the shared RTF DTM system
 * used as a variable stack.
 * @param templateParent The template element that holds the fragment.
 * @return the NodeHandle for the root node of the resulting RTF.
 *
 * @throws TransformerException
 * @xsl.usage advanced
 */
public int transformToRTF(ElemTemplateElement templateParent)
    throws TransformerException
{
 // Retrieve a DTM to contain the RTF. At this writing, this may be a
 // multi-document DTM (SAX2RTFDTM).
 DTM dtmFrag = m_xcontext.getRTFDTM();
 return transformToRTF(templateParent,dtmFrag);
}

origin: com.mobidevelop.robovm/robovm-rt

/**
 * Given a stylesheet element, create a result tree fragment from it's
 * contents. The fragment will be built within the shared RTF DTM system
 * used as a variable stack.
 * @param templateParent The template element that holds the fragment.
 * @return the NodeHandle for the root node of the resulting RTF.
 *
 * @throws TransformerException
 * @xsl.usage advanced
 */
public int transformToRTF(ElemTemplateElement templateParent)
    throws TransformerException
{
 // Retrieve a DTM to contain the RTF. At this writing, this may be a
 // multi-document DTM (SAX2RTFDTM).
 DTM dtmFrag = m_xcontext.getRTFDTM();
 return transformToRTF(templateParent,dtmFrag);
}

origin: MobiVM/robovm

/**
 * Given a stylesheet element, create a result tree fragment from it's
 * contents. The fragment will be built within the shared RTF DTM system
 * used as a variable stack.
 * @param templateParent The template element that holds the fragment.
 * @return the NodeHandle for the root node of the resulting RTF.
 *
 * @throws TransformerException
 * @xsl.usage advanced
 */
public int transformToRTF(ElemTemplateElement templateParent)
    throws TransformerException
{
 // Retrieve a DTM to contain the RTF. At this writing, this may be a
 // multi-document DTM (SAX2RTFDTM).
 DTM dtmFrag = m_xcontext.getRTFDTM();
 return transformToRTF(templateParent,dtmFrag);
}

origin: com.bugvm/bugvm-rt

/**
 * Given a stylesheet element, create a result tree fragment from it's
 * contents. The fragment will be built within the shared RTF DTM system
 * used as a variable stack.
 * @param templateParent The template element that holds the fragment.
 * @return the NodeHandle for the root node of the resulting RTF.
 *
 * @throws TransformerException
 * @xsl.usage advanced
 */
public int transformToRTF(ElemTemplateElement templateParent)
    throws TransformerException
{
 // Retrieve a DTM to contain the RTF. At this writing, this may be a
 // multi-document DTM (SAX2RTFDTM).
 DTM dtmFrag = m_xcontext.getRTFDTM();
 return transformToRTF(templateParent,dtmFrag);
}

origin: ibinti/bugvm

/**
 * Given a stylesheet element, create a result tree fragment from it's
 * contents. The fragment will be built within the shared RTF DTM system
 * used as a variable stack.
 * @param templateParent The template element that holds the fragment.
 * @return the NodeHandle for the root node of the resulting RTF.
 *
 * @throws TransformerException
 * @xsl.usage advanced
 */
public int transformToRTF(ElemTemplateElement templateParent)
    throws TransformerException
{
 // Retrieve a DTM to contain the RTF. At this writing, this may be a
 // multi-document DTM (SAX2RTFDTM).
 DTM dtmFrag = m_xcontext.getRTFDTM();
 return transformToRTF(templateParent,dtmFrag);
}

origin: ibinti/bugvm

/**
 * Given a stylesheet element, create a result tree fragment from it's
 * contents. The fragment will also use the shared DTM system, but will
 * obtain its space from the global variable pool rather than the dynamic
 * variable stack. This allows late binding of XUnresolvedVariables without
 * the risk that their content will be discarded when the variable stack
 * is popped.
 * 
 * @param templateParent The template element that holds the fragment.
 * @return the NodeHandle for the root node of the resulting RTF.
 *
 * @throws TransformerException
 * @xsl.usage advanced
 */
public int transformToGlobalRTF(ElemTemplateElement templateParent)
    throws TransformerException
{
 // Retrieve a DTM to contain the RTF. At this writing, this may be a
 // multi-document DTM (SAX2RTFDTM).
 DTM dtmFrag = m_xcontext.getGlobalRTFDTM();
 return transformToRTF(templateParent,dtmFrag);
}

origin: org.apache.xalan/com.springsource.org.apache.xalan

/**
 * Given a stylesheet element, create a result tree fragment from it's
 * contents. The fragment will be built within the shared RTF DTM system
 * used as a variable stack.
 * @param templateParent The template element that holds the fragment.
 * @return the NodeHandle for the root node of the resulting RTF.
 *
 * @throws TransformerException
 * @xsl.usage advanced
 */
public int transformToRTF(ElemTemplateElement templateParent)
    throws TransformerException
{
 // Retrieve a DTM to contain the RTF. At this writing, this may be a
 // multi-document DTM (SAX2RTFDTM).
 DTM dtmFrag = m_xcontext.getRTFDTM();
 return transformToRTF(templateParent,dtmFrag);
}
 
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan

/**
 * Given a stylesheet element, create a result tree fragment from it's
 * contents. The fragment will be built within the shared RTF DTM system
 * used as a variable stack.
 * @param templateParent The template element that holds the fragment.
 * @return the NodeHandle for the root node of the resulting RTF.
 *
 * @throws TransformerException
 * @xsl.usage advanced
 */
public int transformToRTF(ElemTemplateElement templateParent)
    throws TransformerException
{
 // Retrieve a DTM to contain the RTF. At this writing, this may be a
 // multi-document DTM (SAX2RTFDTM).
 DTM dtmFrag = m_xcontext.getRTFDTM();
 return transformToRTF(templateParent,dtmFrag);
}
 
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * Given a stylesheet element, create a result tree fragment from it's
 * contents. The fragment will be built within the shared RTF DTM system
 * used as a variable stack.
 * @param templateParent The template element that holds the fragment.
 * @return the NodeHandle for the root node of the resulting RTF.
 *
 * @throws TransformerException
 * @xsl.usage advanced
 */
public int transformToRTF(ElemTemplateElement templateParent)
    throws TransformerException
{
 // Retrieve a DTM to contain the RTF. At this writing, this may be a
 // multi-document DTM (SAX2RTFDTM).
 DTM dtmFrag = m_xcontext.getRTFDTM();
 return transformToRTF(templateParent,dtmFrag);
}
 
origin: MobiVM/robovm

/**
 * Given a stylesheet element, create a result tree fragment from it's
 * contents. The fragment will also use the shared DTM system, but will
 * obtain its space from the global variable pool rather than the dynamic
 * variable stack. This allows late binding of XUnresolvedVariables without
 * the risk that their content will be discarded when the variable stack
 * is popped.
 * 
 * @param templateParent The template element that holds the fragment.
 * @return the NodeHandle for the root node of the resulting RTF.
 *
 * @throws TransformerException
 * @xsl.usage advanced
 */
public int transformToGlobalRTF(ElemTemplateElement templateParent)
    throws TransformerException
{
 // Retrieve a DTM to contain the RTF. At this writing, this may be a
 // multi-document DTM (SAX2RTFDTM).
 DTM dtmFrag = m_xcontext.getGlobalRTFDTM();
 return transformToRTF(templateParent,dtmFrag);
}

origin: org.apache.xalan/com.springsource.org.apache.xalan

/**
 * Given a stylesheet element, create a result tree fragment from it's
 * contents. The fragment will also use the shared DTM system, but will
 * obtain its space from the global variable pool rather than the dynamic
 * variable stack. This allows late binding of XUnresolvedVariables without
 * the risk that their content will be discarded when the variable stack
 * is popped.
 * 
 * @param templateParent The template element that holds the fragment.
 * @return the NodeHandle for the root node of the resulting RTF.
 *
 * @throws TransformerException
 * @xsl.usage advanced
 */
public int transformToGlobalRTF(ElemTemplateElement templateParent)
    throws TransformerException
{
 // Retrieve a DTM to contain the RTF. At this writing, this may be a
 // multi-document DTM (SAX2RTFDTM).
 DTM dtmFrag = m_xcontext.getGlobalRTFDTM();
 return transformToRTF(templateParent,dtmFrag);
}
 
org.apache.xalan.transformerTransformerImpltransformToRTF

Javadoc

Given a stylesheet element, create a result tree fragment from it's contents. The fragment will be built within the shared RTF DTM system used as a variable stack.

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

  • Reading from database using SQL prepared statement
  • runOnUiThread (Activity)
  • addToBackStack (FragmentTransaction)
  • getSupportFragmentManager (FragmentActivity)
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • JTextField (javax.swing)
  • Join (org.hibernate.mapping)
  • Table (org.hibernate.mapping)
    A relational table
  • PhpStorm for WordPress
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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