Uses of Interface
org.xml.sax.XMLReader
| Package | Description |
|---|---|
| javax.xml.parsers | |
| javax.xml.transform.sax | |
| org.apache.harmony.xml | |
| org.apache.xalan.transformer |
In charge of run-time transformations and the production of result trees.
|
| org.apache.xml.dtm.ref | |
| org.apache.xml.utils |
Implementation of Xalan utility classes.
|
| org.apache.xpath |
Implementation of XPath; for the most part, only classes meant for public use are
found at this root level of the XPath packages.
|
| org.xml.sax | |
| org.xml.sax.helpers | |
| org.xmlpull.v1.sax2 |
-
Uses of XMLReader in javax.xml.parsers
Methods in javax.xml.parsers that return XMLReader Modifier and Type Method Description abstract XMLReaderSAXParser. getXMLReader()Returns theXMLReaderthat 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 Modifier and Type Method Description XMLReaderSAXSource. getXMLReader()Get the XMLReader to be used for the Source.Methods in javax.xml.transform.sax with parameters of type XMLReader Modifier and Type Method Description voidSAXSource. setXMLReader(XMLReader reader)Set the XMLReader to be used for the Source.Constructors in javax.xml.transform.sax with parameters of type XMLReader Constructor Description SAXSource(XMLReader reader, InputSource inputSource)Create aSAXSource, using anXMLReaderand a SAX InputSource. -
Uses of XMLReader in org.apache.harmony.xml
Classes in org.apache.harmony.xml that implement XMLReader Modifier and Type Class Description classExpatReaderSAX wrapper around Expat. -
Uses of XMLReader in org.apache.xalan.transformer
Classes in org.apache.xalan.transformer that implement XMLReader Modifier and Type Class Description classTrAXFilterMethods in org.apache.xalan.transformer with parameters of type XMLReader Modifier and Type Method Description voidTrAXFilter. setParent(XMLReader parent)Set the parent reader. -
Uses of XMLReader in org.apache.xml.dtm.ref
Methods in org.apache.xml.dtm.ref that return XMLReader Modifier and Type Method Description XMLReaderDTMManagerDefault. getXMLReader(Source inputSource)This method returns the SAX2 parser to use with the InputSource obtained from this URI.Methods in org.apache.xml.dtm.ref with parameters of type XMLReader Modifier and Type Method Description voidDTMManagerDefault. releaseXMLReader(XMLReader reader)Indicates that the XMLReader object is no longer in use for the transform.voidIncrementalSAXSource_Filter. setXMLReader(XMLReader eventsource)Bind our input streams to an XMLReader. -
Uses of XMLReader in org.apache.xml.utils
Methods in org.apache.xml.utils that return XMLReader Modifier and Type Method Description XMLReaderXMLReaderManager. getXMLReader()Retrieves a cached XMLReader for this thread, or creates a new XMLReader, if the existing reader is in use.Methods in org.apache.xml.utils with parameters of type XMLReader Modifier and Type Method Description voidXMLReaderManager. releaseXMLReader(XMLReader reader)Mark the cached XMLReader as available. -
Uses of XMLReader in org.apache.xpath
Fields in org.apache.xpath declared as XMLReader Modifier and Type Field Description XMLReaderXPathContext. m_primaryReaderThe reader of the primary source tree.Methods in org.apache.xpath that return XMLReader Modifier and Type Method Description XMLReaderXPathContext. getPrimaryReader()Get primary XMLReader associated with this execution context.static XMLReaderSourceTreeManager. getXMLReader(Source inputSource, SourceLocator locator)This method returns the SAX2 parser to use with the InputSource obtained from this URI.Methods in org.apache.xpath with parameters of type XMLReader Modifier and Type Method Description voidXPathContext. setPrimaryReader(XMLReader reader)Set primary XMLReader associated with this execution context. -
Uses of XMLReader in org.xml.sax
Subinterfaces of XMLReader in org.xml.sax Modifier and Type Interface Description interfaceXMLFilterInterface for an XML filter.Methods in org.xml.sax that return XMLReader Modifier and Type Method Description XMLReaderXMLFilter. getParent()Get the parent reader.Methods in org.xml.sax with parameters of type XMLReader Modifier and Type Method Description voidXMLFilter. setParent(XMLReader parent)Set the parent reader. -
Uses of XMLReader in org.xml.sax.helpers
Classes in org.xml.sax.helpers that implement XMLReader Modifier and Type Class Description classParserAdapterAdapt a SAX1 Parser as a SAX2 XMLReader.classXMLFilterImplBase class for deriving an XML filter.Methods in org.xml.sax.helpers that return XMLReader Modifier and Type Method Description static XMLReaderXMLReaderFactory. createXMLReader()Attempt to create an XMLReader from system defaults.static XMLReaderXMLReaderFactory. createXMLReader(String className)Attempt to create an XML reader from a class name.XMLReaderXMLFilterImpl. getParent()Get the parent reader.Methods in org.xml.sax.helpers with parameters of type XMLReader Modifier and Type Method Description voidXMLFilterImpl. setParent(XMLReader parent)Set the parent reader.Constructors in org.xml.sax.helpers with parameters of type XMLReader Constructor Description XMLFilterImpl(XMLReader parent)Construct an XML filter with the specified parent.XMLReaderAdapter(XMLReader xmlReader)Create a new adapter. -
Uses of XMLReader in org.xmlpull.v1.sax2
Classes in org.xmlpull.v1.sax2 that implement XMLReader Modifier and Type Class Description classDriverSAX2 Driver that pulls events from XmlPullParser and comverts them into SAX2 callbacks.