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

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

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

origin: robovm/robovm

/**
 * Get a copy of the output properties for the transformation.  These
 * properties will override properties set in the templates
 * with xsl:output.
 *
 * <p>Note that mutation of the Properties object returned will not
 * effect the properties that the transformation contains.</p>
 *
 * @return  A copy of the set of output properties in effect
 * for the next transformation.
 *
 * NEEDSDOC ($objectName$) @return
 */
public Properties getOutputProperties()
{
 return (Properties) getOutputFormat().getProperties().clone();
}
origin: robovm/robovm

/**
 * Create a result ContentHandler from a Result object, based
 * on the current OutputProperties.
 *
 * @param outputTarget Where the transform result should go,
 * should not be null.
 *
 * @return A valid ContentHandler that will create the
 * result tree when it is fed SAX events.
 *
 * @throws TransformerException
 */
public SerializationHandler createSerializationHandler(Result outputTarget)
    throws TransformerException
{
  SerializationHandler xoh =
  createSerializationHandler(outputTarget, getOutputFormat());
  return xoh;
}
origin: xalan/xalan

/**
 * Get a copy of the output properties for the transformation.  These
 * properties will override properties set in the templates
 * with xsl:output.
 *
 * <p>Note that mutation of the Properties object returned will not
 * effect the properties that the transformation contains.</p>
 *
 * @return  A copy of the set of output properties in effect
 * for the next transformation.
 *
 * NEEDSDOC ($objectName$) @return
 */
public Properties getOutputProperties()
{
 return (Properties) getOutputFormat().getProperties().clone();
}
origin: xalan/xalan

/**
 * Create a result ContentHandler from a Result object, based
 * on the current OutputProperties.
 *
 * @param outputTarget Where the transform result should go,
 * should not be null.
 *
 * @return A valid ContentHandler that will create the
 * result tree when it is fed SAX events.
 *
 * @throws TransformerException
 */
public SerializationHandler createSerializationHandler(Result outputTarget)
    throws TransformerException
{
  SerializationHandler xoh =
  createSerializationHandler(outputTarget, getOutputFormat());
  return xoh;
}
origin: robovm/robovm

/**
 * Get the value of a property, without using the default properties.  This
 * can be used to test if a property has been explicitly set by the stylesheet
 * or user.
 *
 * NEEDSDOC @param qnameString
 *
 * @return The value of the property, or null if not found.
 *
 * @throws IllegalArgumentException If the property is not supported,
 * and is not namespaced.
 */
public String getOutputPropertyNoDefault(String qnameString)
    throws IllegalArgumentException
{
 String value = null;
 OutputProperties props = getOutputFormat();
 value = (String) props.getProperties().get(qnameString);
 if (null == value)
 {
  if (!OutputProperties.isLegalPropertyKey(qnameString))
   throw new IllegalArgumentException(XSLMessages.createMessage(XSLTErrorResources.ER_OUTPUT_PROPERTY_NOT_RECOGNIZED, new Object[]{qnameString})); //"output property not recognized: "
                    // + qnameString);
 }
 return value;
}
origin: xalan/xalan

/**
 * Get the value of a property, without using the default properties.  This
 * can be used to test if a property has been explicitly set by the stylesheet
 * or user.
 *
 * NEEDSDOC @param qnameString
 *
 * @return The value of the property, or null if not found.
 *
 * @throws IllegalArgumentException If the property is not supported,
 * and is not namespaced.
 */
public String getOutputPropertyNoDefault(String qnameString)
    throws IllegalArgumentException
{
 String value = null;
 OutputProperties props = getOutputFormat();
 value = (String) props.getProperties().get(qnameString);
 if (null == value)
 {
  if (!OutputProperties.isLegalPropertyKey(qnameString))
   throw new IllegalArgumentException(XSLMessages.createMessage(XSLTErrorResources.ER_OUTPUT_PROPERTY_NOT_RECOGNIZED, new Object[]{qnameString})); //"output property not recognized: "
                    // + qnameString);
 }
 return value;
}
origin: robovm/robovm

/**
 * Get an output property that is in effect for the
 * transformation.  The property specified may be a property
 * that was set with setOutputProperty, or it may be a
 * property specified in the stylesheet.
 *
 * NEEDSDOC @param qnameString
 *
 * @return The string value of the output property, or null
 * if no property was found.
 *
 * @throws IllegalArgumentException If the property is not supported.
 *
 * @see javax.xml.transform.OutputKeys
 */
public String getOutputProperty(String qnameString)
    throws IllegalArgumentException
{
 String value = null;
 OutputProperties props = getOutputFormat();
 value = props.getProperty(qnameString);
 if (null == value)
 {
  if (!OutputProperties.isLegalPropertyKey(qnameString))
   throw new IllegalArgumentException(XSLMessages.createMessage(XSLTErrorResources.ER_OUTPUT_PROPERTY_NOT_RECOGNIZED, new Object[]{qnameString})); //"output property not recognized: "
                     //+ qnameString);
 }
 return value;
}
origin: xalan/xalan

/**
 * Get an output property that is in effect for the
 * transformation.  The property specified may be a property
 * that was set with setOutputProperty, or it may be a
 * property specified in the stylesheet.
 *
 * NEEDSDOC @param qnameString
 *
 * @return The string value of the output property, or null
 * if no property was found.
 *
 * @throws IllegalArgumentException If the property is not supported.
 *
 * @see javax.xml.transform.OutputKeys
 */
public String getOutputProperty(String qnameString)
    throws IllegalArgumentException
{
 String value = null;
 OutputProperties props = getOutputFormat();
 value = props.getProperty(qnameString);
 if (null == value)
 {
  if (!OutputProperties.isLegalPropertyKey(qnameString))
   throw new IllegalArgumentException(XSLMessages.createMessage(XSLTErrorResources.ER_OUTPUT_PROPERTY_NOT_RECOGNIZED, new Object[]{qnameString})); //"output property not recognized: "
                     //+ qnameString);
 }
 return value;
}
origin: xalan/xalan

OutputProperties format = transformer.getOutputFormat();
origin: robovm/robovm

Properties prevProperties = transformer.getOutputFormat().getProperties();
origin: plutext/docx4j

Properties prevProperties = transformer.getOutputFormat().getProperties();
origin: xalan/xalan

Properties prevProperties = transformer.getOutputFormat().getProperties();
origin: MobiVM/robovm

/**
 * Get a copy of the output properties for the transformation.  These
 * properties will override properties set in the templates
 * with xsl:output.
 *
 * <p>Note that mutation of the Properties object returned will not
 * effect the properties that the transformation contains.</p>
 *
 * @return  A copy of the set of output properties in effect
 * for the next transformation.
 *
 * NEEDSDOC ($objectName$) @return
 */
public Properties getOutputProperties()
{
 return (Properties) getOutputFormat().getProperties().clone();
}
origin: ibinti/bugvm

/**
 * Get a copy of the output properties for the transformation.  These
 * properties will override properties set in the templates
 * with xsl:output.
 *
 * <p>Note that mutation of the Properties object returned will not
 * effect the properties that the transformation contains.</p>
 *
 * @return  A copy of the set of output properties in effect
 * for the next transformation.
 *
 * NEEDSDOC ($objectName$) @return
 */
public Properties getOutputProperties()
{
 return (Properties) getOutputFormat().getProperties().clone();
}
origin: com.gluonhq/robovm-rt

/**
 * Get a copy of the output properties for the transformation.  These
 * properties will override properties set in the templates
 * with xsl:output.
 *
 * <p>Note that mutation of the Properties object returned will not
 * effect the properties that the transformation contains.</p>
 *
 * @return  A copy of the set of output properties in effect
 * for the next transformation.
 *
 * NEEDSDOC ($objectName$) @return
 */
public Properties getOutputProperties()
{
 return (Properties) getOutputFormat().getProperties().clone();
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * Get a copy of the output properties for the transformation.  These
 * properties will override properties set in the templates
 * with xsl:output.
 *
 * <p>Note that mutation of the Properties object returned will not
 * effect the properties that the transformation contains.</p>
 *
 * @return  A copy of the set of output properties in effect
 * for the next transformation.
 *
 * NEEDSDOC ($objectName$) @return
 */
public Properties getOutputProperties()
{
 return (Properties) getOutputFormat().getProperties().clone();
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan

/**
 * Get a copy of the output properties for the transformation.  These
 * properties will override properties set in the templates
 * with xsl:output.
 *
 * <p>Note that mutation of the Properties object returned will not
 * effect the properties that the transformation contains.</p>
 *
 * @return  A copy of the set of output properties in effect
 * for the next transformation.
 *
 * NEEDSDOC ($objectName$) @return
 */
public Properties getOutputProperties()
{
 return (Properties) getOutputFormat().getProperties().clone();
}
origin: org.apache.xalan/com.springsource.org.apache.xalan

/**
 * Get a copy of the output properties for the transformation.  These
 * properties will override properties set in the templates
 * with xsl:output.
 *
 * <p>Note that mutation of the Properties object returned will not
 * effect the properties that the transformation contains.</p>
 *
 * @return  A copy of the set of output properties in effect
 * for the next transformation.
 *
 * NEEDSDOC ($objectName$) @return
 */
public Properties getOutputProperties()
{
 return (Properties) getOutputFormat().getProperties().clone();
}
origin: com.bugvm/bugvm-rt

/**
 * Get a copy of the output properties for the transformation.  These
 * properties will override properties set in the templates
 * with xsl:output.
 *
 * <p>Note that mutation of the Properties object returned will not
 * effect the properties that the transformation contains.</p>
 *
 * @return  A copy of the set of output properties in effect
 * for the next transformation.
 *
 * NEEDSDOC ($objectName$) @return
 */
public Properties getOutputProperties()
{
 return (Properties) getOutputFormat().getProperties().clone();
}
origin: MobiVM/robovm

/**
 * Create a result ContentHandler from a Result object, based
 * on the current OutputProperties.
 *
 * @param outputTarget Where the transform result should go,
 * should not be null.
 *
 * @return A valid ContentHandler that will create the
 * result tree when it is fed SAX events.
 *
 * @throws TransformerException
 */
public SerializationHandler createSerializationHandler(Result outputTarget)
    throws TransformerException
{
  SerializationHandler xoh =
  createSerializationHandler(outputTarget, getOutputFormat());
  return xoh;
}
org.apache.xalan.transformerTransformerImplgetOutputFormat

Javadoc

Get the output properties used for the transformation.

Popular methods of TransformerImpl

  • executeChildTemplates
    Execute each of the children of a template element.
  • getMsgMgr
    Return the message manager.
  • 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
  • fatalError
  • currentTemplateRuleIsNull,
  • fatalError,
  • getContentHandler,
  • getContextNodeList,
  • getCountersTable,
  • getCurrentElement,
  • getCurrentNode,
  • getCurrentTemplate,
  • getErrorListener

Popular in Java

  • Making http requests using okhttp
  • getResourceAsStream (ClassLoader)
  • setScale (BigDecimal)
  • getSupportFragmentManager (FragmentActivity)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • JComboBox (javax.swing)
  • Top 12 Jupyter Notebook extensions
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