Uses of Interface
org.xml.sax.XMLReader

Packages that use XMLReader
javax.xml.parsers Provides classes allowing the processing of XML documents. 
javax.xml.transform.sax This package implements SAX2-specific transformation APIs. 
org.apache.xerces.jaxp   
org.apache.xerces.parsers   
org.apache.xerces.util   
org.apache.xml.resolver.tools Apache XML Commons Resolver Tools package. 
org.xml.sax This package provides the core SAX APIs. 
org.xml.sax.helpers This package contains "helper" classes, including support for bootstrapping SAX-based applications. 
 

Uses of XMLReader in javax.xml.parsers
 

Methods in javax.xml.parsers that return XMLReader
abstract  XMLReader SAXParser.getXMLReader()
          Returns the XMLReader that is encapsulated by the implementation of this class.
 

Uses of XMLReader in javax.xml.transform.sax
 

Methods in javax.xml.transform.sax that return XMLReader
 XMLReader SAXSource.getXMLReader()
          Get the XMLReader to be used for the Source.
 

Methods in javax.xml.transform.sax with parameters of type XMLReader
 void SAXSource.setXMLReader(XMLReader reader)
          Set the XMLReader to be used for the Source.
 

Constructors in javax.xml.transform.sax with parameters of type XMLReader
SAXSource(XMLReader reader, InputSource inputSource)
          Create a SAXSource, using an XMLReader and a SAX InputSource.
 

Uses of XMLReader in org.apache.xerces.jaxp
 

Classes in org.apache.xerces.jaxp that implement XMLReader
static class SAXParserImpl.JAXPSAXParser
          Extension of SAXParser.
 

Methods in org.apache.xerces.jaxp that return XMLReader
 XMLReader SAXParserImpl.getXMLReader()
          Returns the XMLReader that is encapsulated by the implementation of this class.
 

Uses of XMLReader in org.apache.xerces.parsers
 

Classes in org.apache.xerces.parsers that implement XMLReader
 class AbstractSAXParser
          This is the base class of all SAX parsers.
 class SAXParser
          This is the main Xerces SAX parser class.
 

Uses of XMLReader in org.apache.xerces.util
 

Methods in org.apache.xerces.util that return XMLReader
 XMLReader SAXInputSource.getXMLReader()
           
 

Methods in org.apache.xerces.util with parameters of type XMLReader
 void SAXInputSource.setXMLReader(XMLReader reader)
           
 

Constructors in org.apache.xerces.util with parameters of type XMLReader
SAXInputSource(XMLReader reader, InputSource inputSource)
           
 

Uses of XMLReader in org.apache.xml.resolver.tools
 

Classes in org.apache.xml.resolver.tools that implement XMLReader
 class ResolvingXMLFilter
          A SAX XMLFilter that performs catalog-based entity resolution.
 class ResolvingXMLReader
          A SAX XMLReader that performs catalog-based entity resolution.
 

Constructors in org.apache.xml.resolver.tools with parameters of type XMLReader
ResolvingXMLFilter(XMLReader parent)
          Construct an XML filter with the specified parent.
ResolvingXMLFilter(XMLReader parent, CatalogManager manager)
          Construct an XML filter with the specified parent.
 

Uses of XMLReader in org.xml.sax
 

Subinterfaces of XMLReader in org.xml.sax
 interface XMLFilter
          Interface for an XML filter.
 

Methods in org.xml.sax that return XMLReader
 XMLReader XMLFilter.getParent()
          Get the parent reader.
 

Methods in org.xml.sax with parameters of type XMLReader
 void XMLFilter.setParent(XMLReader parent)
          Set the parent reader.
 

Uses of XMLReader in org.xml.sax.helpers
 

Classes in org.xml.sax.helpers that implement XMLReader
 class ParserAdapter
          Adapt a SAX1 Parser as a SAX2 XMLReader.
 class XMLFilterImpl
          Base class for deriving an XML filter.
 

Methods in org.xml.sax.helpers that return XMLReader
static XMLReader XMLReaderFactory.createXMLReader()
          Attempt to create an XMLReader from system defaults.
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.
 

Methods in org.xml.sax.helpers with parameters of type XMLReader
 void XMLFilterImpl.setParent(XMLReader parent)
          Set the parent reader.
 

Constructors in org.xml.sax.helpers with parameters of type XMLReader
XMLFilterImpl(XMLReader parent)
          Construct an XML filter with the specified parent.
XMLReaderAdapter(XMLReader xmlReader)
          Create a new adapter.