|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use InputSource | |
---|---|
javax.xml.parsers | Provides classes allowing the processing of XML documents. |
javax.xml.transform.sax | This package implements SAX2-specific transformation APIs. |
javax.xml.xpath | This package provides an object-model neutral API for the evaluation of XPath expressions and access to the evaluation environment. |
org.apache.xerces.jaxp | |
org.apache.xerces.parsers | |
org.apache.xerces.util | |
org.apache.xml.resolver.helpers | Apache XML Commons Resolver Helpers package. |
org.apache.xml.resolver.readers | Apache XML Commons Resolver Readers package. |
org.apache.xml.resolver.tools | Apache XML Commons Resolver Tools package. |
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. |
void |
SAXParser.parse(InputSource is,
DefaultHandler dh)
Parse the content given InputSource
as XML using the specified
DefaultHandler . |
void |
SAXParser.parse(InputSource is,
HandlerBase hb)
Parse the content given InputSource
as XML using the specified
HandlerBase . |
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(InputSource inputSource)
Create a SAXSource , using a SAX InputSource . |
|
SAXSource(XMLReader reader,
InputSource inputSource)
Create a SAXSource , using an XMLReader
and a SAX InputSource. |
Uses of InputSource in javax.xml.xpath |
---|
Methods in javax.xml.xpath with parameters of type InputSource | |
---|---|
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 |
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 |
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 . |
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. |
Uses of InputSource in org.apache.xerces.jaxp |
---|
Methods in org.apache.xerces.jaxp with parameters of type InputSource | |
---|---|
void |
SAXParserImpl.JAXPSAXParser.parse(InputSource inputSource)
|
Document |
DocumentBuilderImpl.parse(InputSource is)
|
void |
SAXParserImpl.parse(InputSource is,
DefaultHandler dh)
|
void |
SAXParserImpl.parse(InputSource is,
HandlerBase hb)
|
Uses of InputSource in org.apache.xerces.parsers |
---|
Methods in org.apache.xerces.parsers with parameters of type InputSource | |
---|---|
void |
DOMParser.parse(InputSource inputSource)
parse |
void |
AbstractSAXParser.parse(InputSource inputSource)
parse |
Uses of InputSource in org.apache.xerces.util |
---|
Methods in org.apache.xerces.util that return InputSource | |
---|---|
InputSource |
XMLCatalogResolver.getExternalSubset(java.lang.String name,
java.lang.String baseURI)
Locates an external subset for documents which do not explicitly provide one. |
InputSource |
SAXInputSource.getInputSource()
|
InputSource |
XMLCatalogResolver.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
Resolves an external entity. |
InputSource |
XMLCatalogResolver.resolveEntity(java.lang.String name,
java.lang.String publicId,
java.lang.String baseURI,
java.lang.String systemId)
Resolves an external entity. |
Methods in org.apache.xerces.util with parameters of type InputSource | |
---|---|
void |
SAXInputSource.setInputSource(InputSource inputSource)
|
Constructors in org.apache.xerces.util with parameters of type InputSource | |
---|---|
SAXInputSource(InputSource inputSource)
|
|
SAXInputSource(XMLReader reader,
InputSource inputSource)
|
Uses of InputSource in org.apache.xml.resolver.helpers |
---|
Methods in org.apache.xml.resolver.helpers that return InputSource | |
---|---|
InputSource |
BootstrapResolver.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
SAX resolveEntity API. |
Uses of InputSource in org.apache.xml.resolver.readers |
---|
Methods in org.apache.xml.resolver.readers that return InputSource | |
---|---|
InputSource |
SAXParserHandler.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
|
Uses of InputSource in org.apache.xml.resolver.tools |
---|
Methods in org.apache.xml.resolver.tools that return InputSource | |
---|---|
InputSource |
ResolvingParser.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
Deprecated. Implements the resolveEntity method
for the SAX interface, using an underlying CatalogResolver
to do the real work. |
InputSource |
CatalogResolver.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
Implements the resolveEntity method
for the SAX interface. |
InputSource |
ResolvingXMLFilter.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
Implements the resolveEntity method
for the SAX interface, using an underlying CatalogResolver
to do the real work. |
Methods in org.apache.xml.resolver.tools with parameters of type InputSource | |
---|---|
void |
ResolvingParser.parse(InputSource input)
Deprecated. SAX Parser API. |
void |
ResolvingXMLFilter.parse(InputSource input)
SAX XMLReader API. |
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 |
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.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 publicId,
java.lang.String systemId)
Invokes EntityResolver2.resolveEntity()
with null entity name and base 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. |
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. |
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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |