diff options
author | Chris Burdess <dog@bluezoo.org> | 2005-09-04 14:46:41 +0000 |
---|---|---|
committer | Chris Burdess <dog@bluezoo.org> | 2005-09-04 14:46:41 +0000 |
commit | 43850d5ea7c0d4c3a4c7a2f03f1b9b50ee2ab333 (patch) | |
tree | 1eca24b3e364c72245074b06719338acf67f0f90 /doc | |
parent | afc5ff6131b77d5e4bf3474f695649ac2c31c744 (diff) | |
download | classpath-43850d5ea7c0d4c3a4c7a2f03f1b9b50ee2ab333.tar.gz |
2005-09-04 Chris Burdess <dog@gnu.org>
* doc/README.jaxp: Updated JAXP documentation for StAX.
* javax/xml/stream/XMLEventFactory.java,
javax/xml/stream/XMLInputFactory.java,
javax/xml/stream/XMLOutputFactory.java: Use GNU implementation by
default.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/README.jaxp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/README.jaxp b/doc/README.jaxp index e06729947..12fd05278 100644 --- a/doc/README.jaxp +++ b/doc/README.jaxp @@ -17,6 +17,7 @@ PACKAGES . gnu.xml.xpath.* ... JAXP XPath implementation . gnu.xml.transform.* ... JAXP XSL transformer implementation . gnu.xml.pipeline.* ... SAX2 event pipeline support +. gnu.xml.stream.* ... StAX pull parser implementation . gnu.xml.util.* ... various XML utility classes . gnu.xml.libxmlj.dom.* ... libxmlj DOM Level 3 Core and XPath . gnu.xml.libxmlj.sax.* ... libxmlj SAX parser @@ -133,6 +134,11 @@ To enable the various GNU JAXP factories, set the following system properties GNU XSL transformer: -Djavax.xml.transform.TransformerFactory=gnu.xml.transform.TransformerFactoryImpl + GNU StAX: + -Djavax.xml.stream.XMLEventFactory=gnu.xml.stream.XMLEventFactoryImpl + -Djavax.xml.stream.XMLInputFactory=gnu.xml.stream.XMLInputFactoryImpl + -Djavax.xml.stream.XMLOutputFactory=gnu.xml.stream.XMLOutputFactoryImpl + libxmlj SAX: -Djavax.xml.parsers.SAXParserFactory=gnu.xml.libxmlj.sax.GnomeSAXParserFactory |