zongaro 2003/06/19 12:14:22
Modified: java/src/org/apache/xalan/xsltc/trax
TransformerFactoryImpl.java
Log:
Added SAXTransformerFactory.FEATURE and SAXTransformerFactory.FEATURE_XMLFILTER
to the list of features that are implemented. Fix for bug 20795.
Revision Changes Path
1.63 +10 -7
xml-xalan/java/src/org/apache/xalan/xsltc/trax/TransformerFactoryImpl.java
Index: TransformerFactoryImpl.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/trax/TransformerFactoryImpl.java,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- TransformerFactoryImpl.java 20 May 2003 14:37:13 -0000 1.62
+++ TransformerFactoryImpl.java 19 Jun 2003 19:14:21 -0000 1.63
@@ -212,15 +212,16 @@
private boolean _generateTranslet = false;
/**
- * If this is set to <code>true</code>, we attempt to use translet classes for
- * transformation if possible without compiling the stylesheet. The translet
class
- * is only used if its timestamp is newer than the timestamp of the stylesheet.
+ * If this is set to <code>true</code>, we attempt to use translet classes
+ * for transformation if possible without compiling the stylesheet. The
+ * translet class is only used if its timestamp is newer than the timestamp
+ * of the stylesheet.
*/
private boolean _autoTranslet = false;
/**
- * If this is set to <code>true</code>, we attempt to load the translet from the
- * CLASSPATH.
+ * If this is set to <code>true</code>, we attempt to load the translet
+ * from the CLASSPATH.
*/
private boolean _useClasspath = false;
@@ -416,7 +417,9 @@
SAXSource.FEATURE,
SAXResult.FEATURE,
StreamSource.FEATURE,
- StreamResult.FEATURE
+ StreamResult.FEATURE,
+ SAXTransformerFactory.FEATURE,
+ SAXTransformerFactory.FEATURE_XMLFILTER
};
// Inefficient, but array is small
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]