Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 6 7 10 package javax.xml.transform.sax; 11 12 import javax.xml.transform.*; 13 14 import org.xml.sax.XMLFilter ; 15 16 27 public abstract class SAXTransformerFactory extends TransformerFactory { 28 29 35 public static final String FEATURE = 36 "http://javax.xml.transform.sax.SAXTransformerFactory/feature"; 37 38 43 public static final String FEATURE_XMLFILTER = 44 "http://javax.xml.transform.sax.SAXTransformerFactory/feature/xmlfilter"; 45 46 49 protected SAXTransformerFactory() {} 50 51 63 public abstract TransformerHandler newTransformerHandler(Source src) 64 throws TransformerConfigurationException; 65 66 77 public abstract TransformerHandler newTransformerHandler( 78 Templates templates) throws TransformerConfigurationException; 79 80 92 public abstract TransformerHandler newTransformerHandler() 93 throws TransformerConfigurationException; 94 95 105 public abstract TemplatesHandler newTemplatesHandler() 106 throws TransformerConfigurationException; 107 108 119 public abstract XMLFilter newXMLFilter(Source src) 120 throws TransformerConfigurationException; 121 122 132 public abstract XMLFilter newXMLFilter(Templates templates) 133 throws TransformerConfigurationException; 134 } 135
| Popular Tags
|