Java Doc for TransformerFactory.java in  » 6.0-JDK-Core » xml » javax » xml » transform » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » xml » javax.xml.transform 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.xml.transform.TransformerFactory

All known Subclasses:   javax.xml.transform.sax.SAXTransformerFactory,
TransformerFactory
abstract public class TransformerFactory (Code)

A TransformerFactory instance can be used to create javax.xml.transform.Transformer and javax.xml.transform.Templates objects.

The system property that determines which Factory implementation to create is named "javax.xml.transform.TransformerFactory". This property names a concrete subclass of the TransformerFactory abstract class. If the property is not defined, a platform default is be used.


author:
   Jeff Suttor
author:
   Neeraj Bajaj



Constructor Summary
protected  TransformerFactory()
     Default constructor is protected on purpose.

Method Summary
abstract public  SourcegetAssociatedStylesheet(Source source, String media, String title, String charset)
    

Get the stylesheet specification(s) associated with the XML Source document via the xml-stylesheet processing instruction that match the given criteria. Note that it is possible to return several stylesheets, in which case they are applied as if they were a list of imports or cascades in a single stylesheet.


Parameters:
  source - The XML source document.
Parameters:
  media - The media attribute to be matched.
abstract public  ObjectgetAttribute(String name)
     Allows the user to retrieve specific attributes on the underlying implementation. An IllegalArgumentException is thrown if the underlying implementation doesn't recognize the attribute.
Parameters:
  name - The name of the attribute.
abstract public  ErrorListenergetErrorListener()
     Get the error event handler for the TransformerFactory.
abstract public  booleangetFeature(String name)
     Look up the value of a feature.

Feature names are fully qualified java.net.URI s. Implementations may define their own features. false is returned if this TransformerFactory or the Transformers or Templates it creates cannot support the feature. It is possible for an TransformerFactory to expose a feature value but be unable to change its state.


Parameters:
  name - Feature name.
abstract public  URIResolvergetURIResolver()
     Get the object that is used by default during the transformation to resolve URIs used in document(), xsl:import, or xsl:include.
public static  TransformerFactorynewInstance()
    

Obtain a new instance of a TransformerFactory. This static method creates a new factory instance This method uses the following ordered lookup procedure to determine the TransformerFactory implementation class to load:

  • Use the javax.xml.transform.TransformerFactory system property.
  • Use the properties file "lib/jaxp.properties" in the JRE directory. This configuration file is in standard java.util.Properties format and contains the fully qualified name of the implementation class with the key being the system property defined above. The jaxp.properties file is read only once by the JAXP implementation and it's values are then cached for future use.
public static  TransformerFactorynewInstance(String factoryClassName, ClassLoader classLoader)
    

Obtain a new instance of a TransformerFactory from factory class name. This function is useful when there are multiple providers in the classpath. It gives more control to the application as it can specify which provider should be loaded.

Once an application has obtained a reference to a TransformerFactory it can use the factory to configure and obtain transformer instances.

Tip for Trouble-shooting

Setting the jaxp.debug system property will cause this method to print a lot of debug messages to System.err about what it is doing and where it is looking at.

If you have problems try:

 java -Djaxp.debug=1 YourProgram ....
 

Parameters:
  factoryClassName - fully qualified factory class name that provides implementation of javax.xml.transform.TransformerFactory.
abstract public  TemplatesnewTemplates(Source source)
     Process the Source into a Templates object, which is a a compiled representation of the source.
abstract public  TransformernewTransformer(Source source)
    

Process the Source into a Transformer Object.

abstract public  TransformernewTransformer()
    

Create a new Transformer that performs a copy of the Source to the Result. i.e.

abstract public  voidsetAttribute(String name, Object value)
     Allows the user to set specific attributes on the underlying implementation.
abstract public  voidsetErrorListener(ErrorListener listener)
     Set the error event listener for the TransformerFactory, which is used for the processing of transformation instructions, and not for the transformation itself.
abstract public  voidsetFeature(String name, boolean value)
    

Set a feature for this TransformerFactory and Transformers or Templates created by this factory.

Feature names are fully qualified java.net.URI s.

abstract public  voidsetURIResolver(URIResolver resolver)
     Set an object that is used by default during the transformation to resolve URIs used in document(), xsl:import, or xsl:include.


Constructor Detail
TransformerFactory
protected TransformerFactory()(Code)
Default constructor is protected on purpose.




Method Detail
getAssociatedStylesheet
abstract public Source getAssociatedStylesheet(Source source, String media, String title, String charset) throws TransformerConfigurationException(Code)

Get the stylesheet specification(s) associated with the XML Source document via the xml-stylesheet processing instruction that match the given criteria. Note that it is possible to return several stylesheets, in which case they are applied as if they were a list of imports or cascades in a single stylesheet.


Parameters:
  source - The XML source document.
Parameters:
  media - The media attribute to be matched. May be null, in whichcase the prefered templates will be used (i.e. alternate = no).
Parameters:
  title - The value of the title attribute to match. May be null.
Parameters:
  charset - The value of the charset attribute to match. May be null. A Source Object suitable for passingto the TransformerFactory.
throws:
  TransformerConfigurationException - An Exceptionis thrown if an error occurings during parsing of thesource.
See Also:    * Associating Style Sheets with XML documents Version 1.0



getAttribute
abstract public Object getAttribute(String name)(Code)
Allows the user to retrieve specific attributes on the underlying implementation. An IllegalArgumentException is thrown if the underlying implementation doesn't recognize the attribute.
Parameters:
  name - The name of the attribute. value The value of the attribute.
throws:
  IllegalArgumentException - When implementation does notrecognize the attribute.



getErrorListener
abstract public ErrorListener getErrorListener()(Code)
Get the error event handler for the TransformerFactory. The current error handler, which should never be null.



getFeature
abstract public boolean getFeature(String name)(Code)
Look up the value of a feature.

Feature names are fully qualified java.net.URI s. Implementations may define their own features. false is returned if this TransformerFactory or the Transformers or Templates it creates cannot support the feature. It is possible for an TransformerFactory to expose a feature value but be unable to change its state.


Parameters:
  name - Feature name. The current state of the feature, true or false.
throws:
  NullPointerException - If the name parameter is null.



getURIResolver
abstract public URIResolver getURIResolver()(Code)
Get the object that is used by default during the transformation to resolve URIs used in document(), xsl:import, or xsl:include. The URIResolver that was set with setURIResolver.



newInstance
public static TransformerFactory newInstance() throws TransformerFactoryConfigurationError(Code)

Obtain a new instance of a TransformerFactory. This static method creates a new factory instance This method uses the following ordered lookup procedure to determine the TransformerFactory implementation class to load:

  • Use the javax.xml.transform.TransformerFactory system property.
  • Use the properties file "lib/jaxp.properties" in the JRE directory. This configuration file is in standard java.util.Properties format and contains the fully qualified name of the implementation class with the key being the system property defined above. The jaxp.properties file is read only once by the JAXP implementation and it's values are then cached for future use. If the file does not exist when the first attempt is made to read from it, no further attempts are made to check for its existence. It is not possible to change the value of any property in jaxp.properties after it has been read for the first time.
  • Use the Services API (as detailed in the JAR specification), if available, to determine the classname. The Services API will look for a classname in the file META-INF/services/javax.xml.transform.TransformerFactory in jars available to the runtime.
  • Platform default TransformerFactory instance.

Once an application has obtained a reference to a TransformerFactory it can use the factory to configure and obtain transformer instances.

new TransformerFactory instance, never null.
throws:
  TransformerFactoryConfigurationError - Thrown if the implementationis not available or cannot be instantiated.



newInstance
public static TransformerFactory newInstance(String factoryClassName, ClassLoader classLoader) throws TransformerFactoryConfigurationError(Code)

Obtain a new instance of a TransformerFactory from factory class name. This function is useful when there are multiple providers in the classpath. It gives more control to the application as it can specify which provider should be loaded.

Once an application has obtained a reference to a TransformerFactory it can use the factory to configure and obtain transformer instances.

Tip for Trouble-shooting

Setting the jaxp.debug system property will cause this method to print a lot of debug messages to System.err about what it is doing and where it is looking at.

If you have problems try:

 java -Djaxp.debug=1 YourProgram ....
 

Parameters:
  factoryClassName - fully qualified factory class name that provides implementation of javax.xml.transform.TransformerFactory.
Parameters:
  classLoader - ClassLoader used to load the factory class. If null current Thread's context classLoader is used to load the factory class. new TransformerFactory instance, never null.
throws:
  TransformerFactoryConfigurationError - if factoryClassName is null, or the factory class cannot be loaded, instantiated.
See Also:   TransformerFactory.newInstance()
since:
   1.6



newTemplates
abstract public Templates newTemplates(Source source) throws TransformerConfigurationException(Code)
Process the Source into a Templates object, which is a a compiled representation of the source. This Templates object may then be used concurrently across multiple threads. Creating a Templates object allows the TransformerFactory to do detailed performance optimization of transformation instructions, without penalizing runtime transformation.
Parameters:
  source - An object that holds a URL, input stream, etc. A Templates object capable of being used for transformationpurposes, never null.
throws:
  TransformerConfigurationException - When parsing toconstruct the Templates object fails.



newTransformer
abstract public Transformer newTransformer(Source source) throws TransformerConfigurationException(Code)

Process the Source into a Transformer Object. The Source is an XSLT document that conforms to XSL Transformations (XSLT) Version 1.0. Care must be taken not to use this Transformer in multiple Threads running concurrently. Different TransformerFactories can be used concurrently by different Threads.


Parameters:
  source - Source of XSLT document used to createTransformer.Examples of XML Sources includejavax.xml.transform.dom.DOMSource DOMSource,javax.xml.transform.sax.SAXSource SAXSource, andjavax.xml.transform.stream.StreamSource StreamSource. A Transformer object that may be used to performa transformation in a single Thread, nevernull.
throws:
  TransformerConfigurationException - Thrown if there are errors whenparsing the Source or it is not possible to create aTransformer instance.
See Also:    * XSL Transformations (XSLT) Version 1.0



newTransformer
abstract public Transformer newTransformer() throws TransformerConfigurationException(Code)

Create a new Transformer that performs a copy of the Source to the Result. i.e. the "identity transform".

A Transformer object that may be used to perform a transformationin a single thread, never null.
throws:
  TransformerConfigurationException - When it is notpossible to create a Transformer instance.



setAttribute
abstract public void setAttribute(String name, Object value)(Code)
Allows the user to set specific attributes on the underlying implementation. An attribute in this context is defined to be an option that the implementation provides. An IllegalArgumentException is thrown if the underlying implementation doesn't recognize the attribute.
Parameters:
  name - The name of the attribute.
Parameters:
  value - The value of the attribute.
throws:
  IllegalArgumentException - When implementation does notrecognize the attribute.



setErrorListener
abstract public void setErrorListener(ErrorListener listener)(Code)
Set the error event listener for the TransformerFactory, which is used for the processing of transformation instructions, and not for the transformation itself. An IllegalArgumentException is thrown if the ErrorListener listener is null.
Parameters:
  listener - The new error listener.
throws:
  IllegalArgumentException - When listener isnull



setFeature
abstract public void setFeature(String name, boolean value) throws TransformerConfigurationException(Code)

Set a feature for this TransformerFactory and Transformers or Templates created by this factory.

Feature names are fully qualified java.net.URI s. Implementations may define their own features. An TransformerConfigurationException is thrown if this TransformerFactory or the Transformers or Templates it creates cannot support the feature. It is possible for an TransformerFactory to expose a feature value but be unable to change its state.

All implementations are required to support the javax.xml.XMLConstants.FEATURE_SECURE_PROCESSING feature. When the feature is:

  • true: the implementation will limit XML processing to conform to implementation limits and behave in a secure fashion as defined by the implementation. Examples include resolving user defined style sheets and functions. If XML processing is limited for security reasons, it will be reported via a call to the registered ErrorListener.fatalError(TransformerException exception) . See TransformerFactory.setErrorListener(ErrorListener listener) .
  • false: the implementation will processing XML according to the XML specifications without regard to possible implementation limits.

Parameters:
  name - Feature name.
Parameters:
  value - Is feature state true or false.
throws:
  TransformerConfigurationException - if this TransformerFactoryor the Transformers or Templates it creates cannot support this feature.
throws:
  NullPointerException - If the name parameter is null.



setURIResolver
abstract public void setURIResolver(URIResolver resolver)(Code)
Set an object that is used by default during the transformation to resolve URIs used in document(), xsl:import, or xsl:include.
Parameters:
  resolver - An object that implements the URIResolver interface,or null.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.