Lines Matching defs:TransformerFactory

31  * <p>A TransformerFactory instance can be used to create
36 * to create is named {@code "javax.xml.transform.TransformerFactory"}.
38 * {@code TransformerFactory} abstract class. If the property is not
46 public abstract class TransformerFactory {
51 protected TransformerFactory() { }
56 * Creates a new instance of the {@code TransformerFactory} builtin
59 * @return A new instance of the {@code TransformerFactory} builtin
64 public static TransformerFactory newDefaultInstance() {
69 * Obtain a new instance of a {@code TransformerFactory}.
73 * the {@code TransformerFactory} implementation class to load:
76 * Use the {@code javax.xml.transform.TransformerFactory} system
114 * {@code TransformerFactory} it can use the factory to configure
117 * @return new TransformerFactory instance, never null.
123 public static TransformerFactory newInstance()
128 TransformerFactory.class,
134 * Obtain a new instance of a {@code TransformerFactory} from factory class name.
140 * {@code TransformerFactory} it can use the factory to configure
153 * @param factoryClassName fully qualified factory class name that provides implementation of {@code javax.xml.transform.TransformerFactory}.
158 * @return new TransformerFactory instance, never null.
168 public static TransformerFactory newInstance(String factoryClassName, ClassLoader classLoader)
172 return FactoryFinder.newInstance(TransformerFactory.class,
224 * a Templates object allows the TransformerFactory to do detailed
255 * to the {@code TransformerFactory}.
291 * <p>Set a feature for this {@code TransformerFactory} and {@code Transformer}s
297 * An {@link TransformerConfigurationException} is thrown if this {@code TransformerFactory} or the
299 * It is possible for an {@code TransformerFactory} to expose a feature value but be unable to change its state.
321 * @throws TransformerConfigurationException if this {@code TransformerFactory}
334 * {@code false} is returned if this {@code TransformerFactory} or the
336 * It is possible for an {@code TransformerFactory} to expose a feature value but be unable to change its state.
417 * Set the error event listener for the TransformerFactory, which
431 * Get the error event handler for the TransformerFactory.