Uses of Class
org.xml.sax.InputSource

Packages that use InputSource
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 
 

Uses of InputSource in javax.xml.parsers
 

Methods in javax.xml.parsers with parameters of type InputSource
abstract  Document DocumentBuilder.parse(InputSource is)
          Parse the content of the given input source as an XML document and return a new DOM Document object.
 void SAXParser.parse(InputSource is, HandlerBase hb)
          Parse the content given InputSource as XML using the specified HandlerBase.
 void SAXParser.parse(InputSource is, DefaultHandler dh)
          Parse the content given InputSource as XML using the specified DefaultHandler.
 

Uses of InputSource in org.xml.sax
 

Methods in org.xml.sax that return InputSource
 InputSource EntityResolver.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Allow the application to resolve external entities.
 InputSource HandlerBase.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Deprecated. Resolve an external entity.
 

Methods in org.xml.sax with parameters of type InputSource
 void Parser.parse(InputSource source)
          Deprecated. Parse an XML document.
 void XMLReader.parse(InputSource input)
          Parse an XML document.
 

Uses of InputSource in org.xml.sax.helpers
 

Methods in org.xml.sax.helpers that return InputSource
 InputSource XMLFilterImpl.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Filter an external entity resolution.
 InputSource DefaultHandler.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Resolve an external entity.
 

Methods in org.xml.sax.helpers with parameters of type InputSource
 void XMLReaderAdapter.parse(InputSource input)
          Parse the document.
 void XMLFilterImpl.parse(InputSource input)
          Parse a document.
 void ParserAdapter.parse(InputSource input)
          Parse an XML document.