org.xml.sax.helpers |
This package contains "helper" classes, including
support for bootstrapping SAX-based applications.
See http://www.saxproject.org
for more information about SAX.
|
Java Source File Name | Type | Comment |
AttributeListImpl.java | Class | Default implementation for AttributeList.
This module, both source code and documentation, is in the
Public Domain, and comes with NO WARRANTY.
See http://www.saxproject.org
for further information.
AttributeList implements the deprecated SAX1
org.xml.sax.AttributeList AttributeList interface, and has been
replaced by the new SAX2
org.xml.sax.helpers.AttributesImplAttributesImpl interface.
This class provides a convenience implementation of the SAX
org.xml.sax.AttributeList AttributeList interface. |
AttributesImpl.java | Class | Default implementation of the Attributes interface. |
DefaultHandler.java | Class | Default base class for SAX2 event handlers. |
LocatorImpl.java | Class | Provide an optional convenience implementation of Locator. |
NamespaceSupport.java | Class | Encapsulate Namespace logic for use by applications using SAX,
or internally by SAX drivers. |
NewInstance.java | Class | Create a new instance of a class by name.
This module, both source code and documentation, is in the
Public Domain, and comes with NO WARRANTY.
See http://www.saxproject.org
for further information.
This class contains a static method for creating an instance of a
class from an explicit class name. |
ParserAdapter.java | Class | Adapt a SAX1 Parser as a SAX2 XMLReader.
This module, both source code and documentation, is in the
Public Domain, and comes with NO WARRANTY.
See http://www.saxproject.org
for further information.
This class wraps a SAX1
org.xml.sax.Parser Parser and makes it act as a SAX2
org.xml.sax.XMLReader XMLReader ,
with feature, property, and Namespace support. |
ParserFactory.java | Class | Java-specific class for dynamically loading SAX parsers.
This module, both source code and documentation, is in the
Public Domain, and comes with NO WARRANTY.
See http://www.saxproject.org
for further information.
Note: This class is designed to work with the now-deprecated
SAX1
org.xml.sax.Parser Parser class. |
XMLFilterImpl.java | Class | Base class for deriving an XML filter.
This module, both source code and documentation, is in the
Public Domain, and comes with NO WARRANTY.
See http://www.saxproject.org
for further information.
This class is designed to sit between an
org.xml.sax.XMLReaderXMLReader and the client application's event handlers. |
XMLReaderAdapter.java | Class | Adapt a SAX2 XMLReader as a SAX1 Parser.
This module, both source code and documentation, is in the
Public Domain, and comes with NO WARRANTY.
See http://www.saxproject.org
for further information.
This class wraps a SAX2
org.xml.sax.XMLReader XMLReader and makes it act as a SAX1
org.xml.sax.Parser Parser . |
XMLReaderFactory.java | Class | Factory for creating an XML reader.
This module, both source code and documentation, is in the
Public Domain, and comes with NO WARRANTY.
See http://www.saxproject.org
for further information.
This class contains static methods for creating an XML reader
from an explicit class name, or based on runtime defaults:
try {
XMLReader myReader = XMLReaderFactory.createXMLReader();
} catch (SAXException e) {
System.err.println(e.getMessage());
}
Note to Distributions bundled with parsers:
You should modify the implementation of the no-arguments
createXMLReader to handle cases where the external
configuration mechanisms aren't set up. |