| java.lang.Object javax.xml.transform.Transformer
Transformer | abstract public class Transformer (Code) | | Apply a transformation from a source, populating a result.
Transformers may be reused, but not concurrently.
author: Andrew Selkirk, David Brownell version: 1.0 |
Constructor Summary | |
protected | Transformer() Default constructor, for use only by subclasses. |
Transformer | protected Transformer()(Code) | | Default constructor, for use only by subclasses.
|
getErrorListener | abstract public ErrorListener getErrorListener()(Code) | | Returns the error handler used as documents are transformed.
|
getOutputProperties | abstract public Properties getOutputProperties()(Code) | | Returns a copy of the transformer's non-default output properties.
That is, properties set in the stylesheet or through
methods on this class are not set.
See Also: OutputKeys See Also: Transformer.setOutputProperties |
getParameter | abstract public Object getParameter(String name)(Code) | | Returns the value of a parameter passed to this transform.
These are primarily for use access within transformations
and extensions.
See Also: Transformer.setParameter |
getURIResolver | abstract public URIResolver getURIResolver()(Code) | | Returns the resolver applied to documents being transformed.
|
setOutputProperty | abstract public void setOutputProperty(String name, String value) throws IllegalArgumentException(Code) | | Assigns the value of a transformation property, affecting
generation of output (mostly text syntax). Parameters include
those defined by the xslt:output element. Default settings may
be explicitly overridden.
See Also: OutputKeys See Also: Transformer.getOutputProperty See Also: Transformer.setOutputProperties Parameters: name - an XML name, or a namespace-scoped XML nameencoded as {uri}localName. Parameters: value - associated with the name |
setParameter | abstract public void setParameter(String name, Object value)(Code) | | Assigns the value of a parameter passed to this transform.
These are primarily for use access within transformations
and extensions.
See Also: Transformer.getParameter See Also: Transformer.clearParameters Parameters: name - an XML name, or a namespace-scoped XML nameencoded as {uri}localName. Parameters: value - associated with the name |
setURIResolver | abstract public void setURIResolver(URIResolver resolver)(Code) | | Assigns the resolver applied to documents being transformed.
|
|
|