Package net.sf.saxon

Class BasicTransformerFactory

  • All Implemented Interfaces:
    Configuration.ApiProvider

    public class BasicTransformerFactory
    extends TransformerFactoryImpl
    A TransformerFactory instance can be used to create Transformer and Template objects.

    This implementation of the JAXP TransformerFactory interface always creates a Saxon configuration with Saxon-HE capability, even if Saxon-PE or Saxon-EE are loaded from the classpath; no attempt is made to look for a license file. This is therefore the recommended factory to use if you want to be sure that an application will run successfully under Saxon-HE, and will fail if it attempts to use Saxon-PE or Saxon-EE facilities.

    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.

    This implementation class implements the abstract methods on both the javax.xml.transform.TransformerFactory and javax.xml.transform.sax.SAXTransformerFactory classes.

    This class is the "public" implementation of the TransformerFactory interface for Saxon-HE. It is a trivial subclass of the internal class SaxonTransformerFactory, which is in a separate package along with the implementation classes to which it has protected access.

    Since:
    9.8.0.5: see bug 3410
    • Constructor Detail

      • BasicTransformerFactory

        public BasicTransformerFactory()
      • BasicTransformerFactory

        public BasicTransformerFactory​(Configuration config)