API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.xml.transform. Transformer View Source
Author(s)
Jeff Suttor
Since
Version
$Revision: 1.3 $, $Date: 2005/10/12 17:14:20 $
Serial
Hierarchy
 Object
      Transformer
Implements
Subclasses
Description
publicabstract abstract class Transformer
  An instance of this abstract class can transform a source tree into a result tree.
See also:   
Constructors
protected Transformer ()
Default constructor is protected on purpose.
Methods
Hide/Show inherited methods
publicabstract void clearParameters ()
Clear all parameters set with setParameter.
publicabstract ErrorListener getErrorListener ()
  Get the error event handler in effect for the transformation.
publicabstract Properties getOutputProperties ()
  Get a copy of the output properties for the transformation.
publicabstract String getOutputProperty (String name) throws IllegalArgumentException
  Get an output property that is in effect for the transformer.
publicabstract Object getParameter (String name)
  Get a parameter that was explicitly set with setParameter.
publicabstract URIResolver getURIResolver ()
  Get an object that will be used to resolve URIs used in document().
public void reset ()
  Reset this Transformer to its original configuration.
publicabstract void setErrorListener (ErrorListener listener) throws IllegalArgumentException
  Set the error event listener in effect for the transformation.
publicabstract void setOutputProperties (Properties oformat)
  Set the output properties for the transformation.
publicabstract void setOutputProperty (String name, String value) throws IllegalArgumentException
  Set an output property that will be in effect for the transformation.
publicabstract void setParameter (String name, Object value)
  Add a parameter for the transformation.
publicabstract void setURIResolver (URIResolver resolver)
  Set an object that will be used to resolve URIs used in document().
publicabstract void transform (Source xmlSource, Result outputTarget) throws TransformerException
  Transform the XML Source to a Result.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar