javax.xml.parsers |
javax.xml.parsers
Provides classes allowing the processing of XML documents. Two types
of plugable parsers are supported:
- SAX (Simple API for XML)
- DOM (Document Object Model)
|
Java Source File Name | Type | Comment |
DocumentBuilder.java | Class | Defines the API to obtain DOM Document instances from an XML
document. |
DocumentBuilderFactory.java | Class | Defines a factory API that enables applications to obtain a
parser that produces DOM object trees from XML documents. |
FactoryConfigurationError.java | Class | Thrown when a problem with configuration with the Parser Factories
exists. |
FactoryFinder.java | Class | Implements pluggable Datatypes.
This class is duplicated for each JAXP subpackage so keep it in
sync. |
ParserConfigurationException.java | Class | Indicates a serious configuration error. |
SAXParser.java | Class | Defines the API that wraps an
org.xml.sax.XMLReader implementation class. |
SAXParserFactory.java | Class | Defines a factory API that enables applications to configure and
obtain a SAX based parser to parse XML documents. |
SecuritySupport.java | Class | This class is duplicated for each JAXP subpackage so keep it in sync. |