Uses of Class
org.apache.xalan.templates.OutputProperties

Packages that use OutputProperties
org.apache.xalan.lib Extension elements and functions shipped with Xalan-Java, including EXSLT functions. 
org.apache.xalan.processor Parses an XSLT stylesheet document (which may include and import other stylesheet documents) and produces a StylesheetRoot (a TRaX Templates object). 
org.apache.xalan.templates Implements the Templates interface, and defines a set of classes that represent an XSLT stylesheet. 
org.apache.xalan.transformer In charge of run-time transformations and the production of result trees. 
 

Uses of OutputProperties in org.apache.xalan.lib
 

Methods in org.apache.xalan.lib with parameters of type OutputProperties
 SerializationHandler Redirect.createSerializationHandler(TransformerImpl transformer, java.io.FileOutputStream ostream, java.io.File file, OutputProperties format)
          A class that extends this one could over-ride this public method and receive a callback for the creation of the serializer used in the redirection.
 

Uses of OutputProperties in org.apache.xalan.processor
 

Fields in org.apache.xalan.processor declared as OutputProperties
private  OutputProperties ProcessorOutputElem.m_outputProperties
          The output properties, set temporarily while the properties are being set from the attributes, and then nulled after that operation is completed.
 

Uses of OutputProperties in org.apache.xalan.templates
 

Fields in org.apache.xalan.templates declared as OutputProperties
private  OutputProperties StylesheetRoot.m_outputProperties
          This will be set up with the default values, and then the values will be set as stylesheets are encountered.
 

Methods in org.apache.xalan.templates that return OutputProperties
 OutputProperties Stylesheet.getOutput(int i)
          Get an "xsl:output" property.
 OutputProperties StylesheetRoot.getOutputComposed()
          Get the combined "xsl:output" property with the properties combined from the included stylesheets.
 

Methods in org.apache.xalan.templates with parameters of type OutputProperties
 void OutputProperties.copyFrom(OutputProperties opsrc)
          Copy the keys and values from the source to this object.
(package private)  void StylesheetRoot.recomposeOutput(OutputProperties oprops)
          Recompose the output format object from the included elements.
 void Stylesheet.setOutput(OutputProperties v)
          Set the "xsl:output" property.
 

Uses of OutputProperties in org.apache.xalan.transformer
 

Fields in org.apache.xalan.transformer declared as OutputProperties
private  OutputProperties TransformerImpl.m_outputFormat
          The output format object set by the user.
private  OutputProperties TransformerIdentityImpl.m_outputFormat
          The output properties.
private  OutputProperties TransformerImpl.m_textformat
          A static text format object, which can be used over and over to create the text serializers.
 

Methods in org.apache.xalan.transformer that return OutputProperties
 OutputProperties TransformerImpl.getOutputFormat()
          Get the output properties used for the transformation.
 

Methods in org.apache.xalan.transformer with parameters of type OutputProperties
 SerializationHandler TransformerImpl.createSerializationHandler(javax.xml.transform.Result outputTarget, OutputProperties format)
          Create a ContentHandler from a Result object and an OutputProperties.
 void TransformerImpl.setOutputFormat(OutputProperties oformat)
          Set the output properties for the transformation.