congrats Icon
New! Announcing our next generation AI code completions
Read here
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

  • Start an intent from android
  • setRequestProperty (URLConnection)
  • onRequestPermissionsResult (Fragment)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • Top 17 Plugins for Android Studio
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