Package | Description |
---|---|
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 |
Modifier and Type | Method and Description |
---|---|
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 . |
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
SAXSource.setInputSource(InputSource inputSource)
Set the SAX InputSource to be used for the Source.
|
Constructor and Description |
---|
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. |
Modifier and Type | Method and Description |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
InputSource |
StylesheetHandler.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
Resolve an external entity.
|
InputSource |
XSLTElementProcessor.resolveEntity(StylesheetHandler handler,
java.lang.String publicId,
java.lang.String systemId)
Resolve an external entity.
|
Modifier and Type | Method and Description |
---|---|
InputSource |
TransformerHandlerImpl.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
Filter an external entity resolution.
|
Modifier and Type | Method and Description |
---|---|
void |
TrAXFilter.parse(InputSource input)
Parse a document.
|
Modifier and Type | Method and Description |
---|---|
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
|
Modifier and Type | Method and Description |
---|---|
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)
Compiles a stylesheet pointed to by a URL.
|
byte[][] |
XSLTC.compile(java.lang.String name,
InputSource input,
int outputType)
Compiles a stylesheet pointed to by a URL.
|
SyntaxTreeNode |
Parser.parse(InputSource input)
Parses a stylesheet and builds the internal abstract syntax tree
|
SyntaxTreeNode |
Parser.parse(XMLReader reader,
InputSource input)
Parses a stylesheet and builds the internal abstract syntax tree
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
TrAXFilter.parse(InputSource input) |
void |
DOM2TO.parse(InputSource unused) |
void |
DOM2SAX.parse(InputSource unused) |
Modifier and Type | Method and Description |
---|---|
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.
|
void |
IncrementalSAXSource_Xerces.startParse(InputSource source)
startParse() is a simple API which tells the IncrementalSAXSource
to begin reading a document.
|
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.startParse(InputSource source)
Launch an XMLReader's parsing operation, feeding events to this
IncrementalSAXSource.
|
Modifier and Type | Method and Description |
---|---|
InputSource |
SAX2DTM.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
Resolve an external entity.
|
Modifier and Type | Method and Description |
---|---|
void |
DOM2Helper.parse(InputSource source)
Deprecated.
Parse an XML document.
|
Modifier and Type | Method and Description |
---|---|
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 |
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 |
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 . |
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. |
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
XMLReader.parse(InputSource input)
Parse an XML document.
|
void |
Parser.parse(InputSource source)
Deprecated.
Parse an XML document.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Copyright © 2014 Apache XML Project. All Rights Reserved.