Uses of Class
org.xml.sax.InputSource

Packages that use InputSource
javax.xml.parsers   
org.eclipse.ercp.jaxp.implForCore   
org.eclipse.ercp.xml.parser   
org.xml.sax This package provides the core SAX APIs. 
org.xml.sax.ext This package contains interfaces to SAX2 facilities that conformant SAX drivers won't necessarily support. 
org.xml.sax.helpers This package contains "helper" classes, including support for bootstrapping SAX-based applications. 
 

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.
abstract  void SAXParser.parse(InputSource is, DefaultHandler dh)
          Parse the content of the given InputStream instance as XML using the specified DefaultHandler.
 

Uses of InputSource in org.eclipse.ercp.jaxp.implForCore
 

Methods in org.eclipse.ercp.jaxp.implForCore with parameters of type InputSource
 Document DocumentBuilderImpl.parse(InputSource is)
           
 void SAXParserImpl.parse(InputSource is, DefaultHandler dh)
          Parse the content of the given InputStream instance as XML using the specified DefaultHandler.
 

Uses of InputSource in org.eclipse.ercp.xml.parser
 

Methods in org.eclipse.ercp.xml.parser with parameters of type InputSource
 void AbstractSAXParserImpl.parse(InputSource inputSource)
          Internal call
 

Uses of InputSource in org.xml.sax
 

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

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

Uses of InputSource in org.xml.sax.ext
 

Methods in org.xml.sax.ext that return InputSource
 InputSource DefaultHandler2.getExternalSubset(java.lang.String name, java.lang.String baseURI)
          Tells the parser that if no external subset has been declared in the document text, none should be used.
 InputSource EntityResolver2.getExternalSubset(java.lang.String name, java.lang.String baseURI)
          Allows applications to provide an external subset for documents that don't explicitly define one.
 InputSource DefaultHandler2.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Invokes EntityResolver2.resolveEntity() with null entity name and base URI.
 InputSource DefaultHandler2.resolveEntity(java.lang.String name, java.lang.String publicId, java.lang.String baseURI, java.lang.String systemId)
          Tells the parser to resolve the systemId against the baseURI and read the entity text from that resulting absolute URI.
 InputSource EntityResolver2.resolveEntity(java.lang.String name, java.lang.String publicId, java.lang.String baseURI, java.lang.String systemId)
          Allows applications to map references to external entities into input sources, or tell the parser it should use conventional URI resolution.
 

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 ParserAdapter.parse(InputSource input)
          Parse an XML document.
 void XMLFilterImpl.parse(InputSource input)
          Parse a document.
 void XMLReaderAdapter.parse(InputSource input)
          Parse the document.