Home | History | Annotate | Download | only in transformer

Lines Matching refs:Properties

25 import java.util.Properties;
138 * is needed in order to set parameters and output properties.
463 reader.setProperty("http://xml.org/sax/properties/lexical-handler",
468 "http://xml.org/sax/properties/declaration-handler",
621 * Set the output properties for the transformation. These
622 * properties will override properties set in the Templates
625 * <p>If argument to this function is null, any properties
639 * @param oformat A set of output properties that will be
640 * used to override any of the same properties in affect
644 * @see java.util.Properties
649 public void setOutputProperties(Properties oformat)
674 * Get a copy of the output properties for the transformation.
676 * <p>The properties returned should contain properties set by the user,
677 * and properties set by the stylesheet, and these properties
678 * are "defaulted" by default properties specified by <a href="http://www.w3.org/TR/xslt#output">section 16 of the
679 * XSL Transformations (XSLT) W3C Recommendation</a>. The properties that
681 * Properties list, while the XSLT default properties that were not
682 * specifically set should be the default Properties list. Thus,
686 * properties, while
687 * getOutputProperties().get(String key) will only retrieve properties
691 * <p>Note that mutation of the Properties object returned will not
692 * effect the properties that the transformation contains.</p>
698 * @return A copy of the set of output properties in effect
702 * @see java.util.Properties
704 public Properties getOutputProperties()
706 return (Properties) m_outputFormat.getProperties().clone();
723 * <p>The Properties object that was passed to {@link #setOutputProperties} won't
1470 /** The output properties. */