Uses of Class
org.xml.sax.InputSource

Packages that use InputSource
javax.xml.parsers   
javax.xml.transform.sax   
javax.xml.xpath   
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.transformer In charge of run-time transformations and the production of result trees. 
org.apache.xalan.xsltc.compiler   
org.apache.xalan.xsltc.trax   
org.apache.xml.dtm.ref   
org.apache.xml.dtm.ref.sax2dtm   
org.apache.xml.utils Implementation of Xalan utility classes. 
org.apache.xpath.jaxp   
org.xml.sax   
org.xml.sax.ext   
org.xml.sax.helpers   
 

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 javax.xml.transform.sax
 

Methods in javax.xml.transform.sax that return InputSource
 InputSource SAXSource.getInputSource()
          Get the SAX InputSource to be used for the Source.
static InputSource SAXSource.sourceToInputSource(Source source)
          Attempt to obtain a SAX InputSource object from a Source object.
 

Methods in javax.xml.transform.sax with parameters of type InputSource
 void SAXSource.setInputSource(InputSource inputSource)
          Set the SAX InputSource to be used for the Source.
 

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

Uses of InputSource in javax.xml.xpath
 

Methods in javax.xml.xpath with parameters of type InputSource
 java.lang.Object XPathExpression.evaluate(InputSource source, QName returnType)
          Evaluate the compiled XPath expression in the context of the specified InputSource and return the result as the specified type.
 java.lang.String XPathExpression.evaluate(InputSource source)
          Evaluate the compiled XPath expression in the context of the specified InputSource and return the result as a String.
 java.lang.Object XPath.evaluate(java.lang.String expression, InputSource source, QName returnType)
          Evaluate an XPath expression in the context of the specified InputSource and return the result as the specified type.
 java.lang.String XPath.evaluate(java.lang.String expression, InputSource source)
          Evaluate an XPath expression in the context of the specified InputSource and return the result as a String.
 

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 StylesheetHandler.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Resolve an external entity.
 

Uses of InputSource in org.apache.xalan.transformer
 

Methods in org.apache.xalan.transformer that return InputSource
 InputSource TransformerHandlerImpl.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Filter an external entity resolution.
 

Methods in org.apache.xalan.transformer with parameters of type InputSource
 void TrAXFilter.parse(InputSource input)
          Parse a document.
 

Uses of InputSource in org.apache.xalan.xsltc.compiler
 

Methods in org.apache.xalan.xsltc.compiler that return InputSource
 InputSource SourceLoader.loadSource(java.lang.String href, java.lang.String context, XSLTC xsltc)
          This interface is used to plug external document loaders into XSLTC (used with the and elements.
 

Methods in org.apache.xalan.xsltc.compiler with parameters of type InputSource
 SyntaxTreeNode Parser.parse(XMLReader reader, InputSource input)
          Parses a stylesheet and builds the internal abstract syntax tree
 SyntaxTreeNode Parser.parse(InputSource input)
          Parses a stylesheet and builds the internal abstract syntax tree
 boolean XSLTC.compile(InputSource input, java.lang.String name)
          Compiles an XSL stylesheet passed in through an InputStream
 byte[][] XSLTC.compile(java.lang.String name, InputSource input, int outputType)
          Compiles a stylesheet pointed to by a URL.
 byte[][] XSLTC.compile(java.lang.String name, InputSource input)
          Compiles a stylesheet pointed to by a URL.
 

Uses of InputSource in org.apache.xalan.xsltc.trax
 

Methods in org.apache.xalan.xsltc.trax that return InputSource
static InputSource Util.getInputSource(XSLTC xsltc, Source source)
          Creates a SAX2 InputSource object from a TrAX Source object
 InputSource TransformerFactoryImpl.loadSource(java.lang.String href, java.lang.String context, XSLTC xsltc)
          This method implements XSLTC's SourceLoader interface.
 InputSource TemplatesHandlerImpl.loadSource(java.lang.String href, java.lang.String context, XSLTC xsltc)
          This method implements XSLTC's SourceLoader interface.
 

Methods in org.apache.xalan.xsltc.trax with parameters of type InputSource
 void DOM2SAX.parse(InputSource unused)
           
 void TrAXFilter.parse(InputSource input)
           
 void DOM2TO.parse(InputSource unused)
           
 

Uses of InputSource in org.apache.xml.dtm.ref
 

Methods in org.apache.xml.dtm.ref with parameters of type InputSource
 void IncrementalSAXSource.startParse(InputSource source)
          Launch an XMLReader's parsing operation, feeding events to this IncrementalSAXSource.
 void IncrementalSAXSource_Filter.startParse(InputSource source)
          Launch a thread that will run an XMLReader's parse() operation within a thread, feeding events to this IncrementalSAXSource_Filter.
 void IncrementalSAXSource_Xerces.startParse(InputSource source)
          startParse() is a simple API which tells the IncrementalSAXSource to begin reading a document.
 java.lang.Object CoroutineParser.doParse(InputSource source, int appCoroutine)
          Deprecated. doParse() is a simple API which tells the coroutine parser to begin reading from a file.
 

Uses of InputSource in org.apache.xml.dtm.ref.sax2dtm
 

Methods in org.apache.xml.dtm.ref.sax2dtm that return InputSource
 InputSource SAX2DTM.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Resolve an external entity.
 

Uses of InputSource in org.apache.xml.utils
 

Methods in org.apache.xml.utils with parameters of type InputSource
 void DOM2Helper.parse(InputSource source)
          Deprecated. Parse an XML document.
 

Uses of InputSource in org.apache.xpath.jaxp
 

Methods in org.apache.xpath.jaxp with parameters of type InputSource
 java.lang.Object XPathExpressionImpl.evaluate(InputSource source, QName returnType)
          Evaluate the compiled XPath expression in the context of the specified InputSource and return the result as the specified type.
 java.lang.String XPathExpressionImpl.evaluate(InputSource source)
          Evaluate the compiled XPath expression in the context of the specified InputSource and return the result as a String.
 java.lang.Object XPathImpl.evaluate(java.lang.String expression, InputSource source, QName returnType)
          Evaluate an XPath expression in the context of the specified InputSource and return the result as the specified type.
 java.lang.String XPathImpl.evaluate(java.lang.String expression, InputSource source)
          Evaluate an XPath expression in the context of the specified InputSource and return the result as a String.
 

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 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 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 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.
 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 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 DefaultHandler2.resolveEntity(java.lang.String publicId, java.lang.String systemId)
          Invokes EntityResolver2.resolveEntity() with null entity name and base URI.
 

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 © 2006 Apache XML Project. All Rights Reserved.