| Package | Description |
|---|---|
| javax.xml.parsers |
Provides classes allowing the processing of XML documents.
|
| org.xml.sax |
SAX 2.0 r2 prerelease interfaces
|
| org.xml.sax.helpers |
SAX 2.0 r2 prerelease helper interfaces
|
| Modifier and Type | Method and Description |
|---|---|
abstract XMLReader |
SAXParser.getXMLReader()
Returns the
XMLReader that is encapsulated by the
implementation of this class. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
XMLFilter
Interface for an XML filter.
|
| Modifier and Type | Method and Description |
|---|---|
XMLReader |
XMLFilter.getParent()
Get the parent reader.
|
| Modifier and Type | Method and Description |
|---|---|
void |
XMLFilter.setParent(XMLReader parent)
Set the parent reader.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ParserAdapter
Adapt a SAX1 Parser as a SAX2 XMLReader.
|
class |
XMLFilterImpl
Base class for deriving an XML filter.
|
| Modifier and Type | Method and Description |
|---|---|
static XMLReader |
XMLReaderFactory.createXMLReader()
Attempt to create an XML reader from a system property.
|
static XMLReader |
XMLReaderFactory.createXMLReader(java.lang.String className)
Attempt to create an XML reader from a class name.
|
XMLReader |
XMLFilterImpl.getParent()
Get the parent reader.
|
| Modifier and Type | Method and Description |
|---|---|
void |
XMLFilterImpl.setParent(XMLReader parent)
Set the parent reader.
|
| Constructor and Description |
|---|
XMLFilterImpl(XMLReader parent)
Construct an XML filter with the specified parent.
|
XMLReaderAdapter(XMLReader xmlReader)
Create a new adapter.
|