Uses of Class
org.xml.sax.InputSource

Packages that use InputSource
javax.xml.parsers This package provides a pluggability mechanism to allow a compliant SAX or DOM parser to be used independently by an application. 
org.apache.trax Defines a global interface for generating Templates and performing XML transformations. 
org.apache.xalan.processor Parses an XSLT stylesheet document (which may include and import other stylesheet documents) and produces a StylesheetRoot (a TRaX Templates object). 
org.apache.xalan.stree Implementation of the Xalan Source Tree, which is a DOM implementation that is optimized for XSLT processing and the needs of Xalan -- derived nodes can index the children, and, combined with specialized node iterators (and tree walkers) can provide optimal child retrieval. 
org.apache.xalan.transformer In charge of run-time transformations and the production of result trees. 
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 SAX 2.0 interfaces. 
org.xml.sax.helpers SAX 2.0 implementation classes. 
 

Uses of InputSource in javax.xml.parsers
 

Methods in javax.xml.parsers with parameters of type InputSource
 void SAXParser.parse(InputSource source, HandlerBase base)
          Parses the content of the given InputSource as an XML document using the specified HandlerBase object.
abstract  Document DocumentBuilder.parse(InputSource source)
          Parses the content of the given InputSource and returns a Document object.
 

Uses of InputSource in org.apache.trax
 

Methods in org.apache.trax that return InputSource
abstract  InputSource[] Processor.getAssociatedStylesheets(InputSource source, java.lang.String media, java.lang.String title, java.lang.String charset)
          Get InputSource specification(s) that are associated with the given document specified in the source param, via the xml-stylesheet processing instruction (see http://www.w3.org/TR/xml-stylesheet/), and that matches the given criteria.
 

Methods in org.apache.trax with parameters of type InputSource
abstract  Templates Processor.process(InputSource source)
          Process the source into a templates object.
abstract  Templates Processor.processMultiple(InputSource[] source)
          Process a series of inputs, treating them in import or cascade order.
abstract  InputSource[] Processor.getAssociatedStylesheets(InputSource source, java.lang.String media, java.lang.String title, java.lang.String charset)
          Get InputSource specification(s) that are associated with the given document specified in the source param, via the xml-stylesheet processing instruction (see http://www.w3.org/TR/xml-stylesheet/), and that matches the given criteria.
 void Transformer.transform(InputSource xmlSource)
          Process the source tree to SAX parse events.
 void Transformer.transform(InputSource xmlSource, Result outputTarget)
          Process the source tree to the output result.
 Node URIResolver.getDOMNode(InputSource inputSource)
          This will be called by the processor when it encounters an xsl:include, xsl:import, or document() function, if it needs a DOM tree.
 XMLReader URIResolver.getXMLReader(InputSource inputSource)
          This method returns the SAX2 parser to use with the InputSource obtained from this URI.
 

Uses of InputSource in org.apache.xalan.processor
 

Methods in org.apache.xalan.processor that return InputSource
 InputSource XSLTElementProcessor.resolveEntity(StylesheetHandler handler, java.lang.String publicId, java.lang.String systemId)
          Resolve an external entity.
 InputSource[] StylesheetPIHandler.getAssociatedStylesheets()
          Return all stylesheets found that match the constraints.
 InputSource[] StylesheetProcessor.getAssociatedStylesheets(InputSource source, java.lang.String media, java.lang.String title, java.lang.String charset)
          Get InputSource specification(s) that are associated with the given document specified in the source param, via the xml-stylesheet processing instruction (see http://www.w3.org/TR/xml-stylesheet/), and that matches the given criteria.
 InputSource StylesheetHandler.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          **For advanced use only** Resolve an external entity.
 

Methods in org.apache.xalan.processor with parameters of type InputSource
 Templates StylesheetProcessor.process(InputSource source)
          Process the source into a templates object.
 Templates StylesheetProcessor.processMultiple(InputSource[] source)
          Process a series of inputs, treating them in import or cascade order.
 InputSource[] StylesheetProcessor.getAssociatedStylesheets(InputSource source, java.lang.String media, java.lang.String title, java.lang.String charset)
          Get InputSource specification(s) that are associated with the given document specified in the source param, via the xml-stylesheet processing instruction (see http://www.w3.org/TR/xml-stylesheet/), and that matches the given criteria.
 

Constructors in org.apache.xalan.processor with parameters of type InputSource
StylesheetPIHandler.StylesheetPIHandler(InputSource source, java.lang.String media, java.lang.String title, java.lang.String charset)
          Construct a StylesheetPIHandler instance.
 

Uses of InputSource in org.apache.xalan.stree
 

Methods in org.apache.xalan.stree that return InputSource
 InputSource SourceTreeHandler.getInputSource()
           
 

Methods in org.apache.xalan.stree with parameters of type InputSource
 void SourceTreeHandler.setInputSource(InputSource source)
           
 

Uses of InputSource in org.apache.xalan.transformer
 

Methods in org.apache.xalan.transformer with parameters of type InputSource
 void TransformerImpl.parse(InputSource xmlSource)
          **For advanced use only** Transform a document.
 void TransformerImpl.transform(InputSource xmlSource)
          **For advanced use only** Process the source tree to SAX parse events.
 Node TransformerImpl.parseToNode(InputSource xmlSource)
          **For advanced use only** Process the an input source to a DOM node.
 void TransformerImpl.transform(InputSource xmlSource, Result outputTarget)
          **For advanced use only** Process the source tree to the output result.
 

Uses of InputSource in org.apache.xpath
 

Methods in org.apache.xpath that return InputSource
 InputSource SourceTreeManager.resolveURI(java.lang.String base, java.lang.String urlString, Locator locator)
          This will be called by the processor when it encounters an xsl:include, xsl:import, or document() function.
 

Methods in org.apache.xpath with parameters of type InputSource
 void DOM2Helper.parse(InputSource source)
          **For internal use only** Parse an XML document.
 void SourceTreeManager.putDocumentInCache(Node n, InputSource source)
          Put the source tree root node in the document cache.
 Node SourceTreeManager.getSourceTree(InputSource source, Locator locator)
          Get the source tree from the input source.
 Node SourceTreeManager.getDOMNode(InputSource source, Locator locator)
          Try to create a DOM source tree from the input source.
 XMLReader SourceTreeManager.getXMLReader(InputSource inputSource, Locator locator)
          This method returns the SAX2 parser to use with the InputSource obtained from this URI.
 

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 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 DefaultHandler.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Resolve an external entity.
 InputSource XMLFilterImpl.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Filter an external entity resolution.
 

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



Copyright © 2000 Apache XML Project. All Rights Reserved.