Package | Description |
---|---|
javax.xml.parsers | |
javax.xml.validation | |
org.apache.xalan.lib |
Extension elements and functions shipped with Xalan-Java, including EXSLT functions.
|
org.apache.xalan.lib.sql |
Provides extension functions for connecting to a JDBC data source, executing a query,
and working incrementally through a "streamable" result set.
|
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.serialize | |
org.apache.xalan.transformer |
In charge of run-time transformations and the production of result trees.
|
org.apache.xalan.xsltc | |
org.apache.xalan.xsltc.compiler | |
org.apache.xalan.xsltc.dom | |
org.apache.xalan.xsltc.runtime | |
org.apache.xalan.xsltc.trax | |
org.apache.xml.dtm | |
org.apache.xml.dtm.ref | |
org.apache.xml.dtm.ref.dom2dtm | |
org.apache.xml.dtm.ref.sax2dtm | |
org.apache.xml.serializer |
Processes SAX events into streams.
|
org.apache.xml.utils |
Implementation of Xalan utility classes.
|
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.apache.xpath.axes |
Implementation of XPath LocationPath support -- primary classes are
LocPathIterator and UnionPathIterator.
|
org.apache.xpath.functions |
Implements XPath functions -- each function is derived from Function,
FunctionOneArg, Function2Args, etc, with number-of-arguments checking being
applied mainly at compile time -- this package only implements XPath functions,
XSLT functions are found in the "templates" package.
|
org.apache.xpath.objects |
Implementation of XPath polymorphic type objects -- this package will grow
as XPath objects are expanded to support XML Schema data types.
|
org.xml.sax | |
org.xml.sax.ext | |
org.xml.sax.helpers |
Modifier and Type | Method and Description |
---|---|
abstract Parser |
SAXParser.getParser()
Returns the SAX parser that is encapsultated by the
implementation of this class.
|
abstract XMLReader |
SAXParser.getXMLReader()
Returns the
XMLReader that is encapsulated by the
implementation of this class. |
abstract SAXParser |
SAXParserFactory.newSAXParser()
Creates a new instance of a SAXParser using the currently
configured factory parameters.
|
Document |
DocumentBuilder.parse(java.io.File f)
Parse the content of the given file as an XML document
and return a new DOM
Document object. |
void |
SAXParser.parse(java.io.File f,
DefaultHandler dh)
Parse the content of the file specified as XML using the
specified
DefaultHandler . |
void |
SAXParser.parse(java.io.File f,
HandlerBase hb)
Parse the content of the file specified as XML using the
specified
HandlerBase . |
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 . |
Document |
DocumentBuilder.parse(java.io.InputStream is)
Parse the content of the given
InputStream as an XML
document and return a new DOM Document object. |
void |
SAXParser.parse(java.io.InputStream is,
DefaultHandler dh)
Parse the content of the given
InputStream
instance as XML using the specified
DefaultHandler . |
void |
SAXParser.parse(java.io.InputStream is,
DefaultHandler dh,
java.lang.String systemId)
Parse the content of the given
InputStream
instance as XML using the specified
DefaultHandler . |
void |
SAXParser.parse(java.io.InputStream is,
HandlerBase hb)
Parse the content of the given
InputStream
instance as XML using the specified HandlerBase . |
void |
SAXParser.parse(java.io.InputStream is,
HandlerBase hb,
java.lang.String systemId)
Parse the content of the given
InputStream
instance as XML using the specified HandlerBase . |
Document |
DocumentBuilder.parse(java.io.InputStream is,
java.lang.String systemId)
Parse the content of the given
InputStream as an
XML document and return a new DOM Document object. |
Document |
DocumentBuilder.parse(java.lang.String uri)
Parse the content of the given URI as an XML document
and return a new DOM
Document object. |
void |
SAXParser.parse(java.lang.String uri,
DefaultHandler dh)
Parse the content described by the giving Uniform Resource
Identifier (URI) as XML using the specified
DefaultHandler . |
void |
SAXParser.parse(java.lang.String uri,
HandlerBase hb)
Parse the content described by the giving Uniform Resource
Identifier (URI) as XML using the specified
HandlerBase . |
Modifier and Type | Method and Description |
---|---|
abstract Schema |
SchemaFactory.newSchema()
Creates a special
Schema object. |
Schema |
SchemaFactory.newSchema(java.io.File schema)
Parses the specified
File as a schema and returns it as a Schema . |
Schema |
SchemaFactory.newSchema(Source schema)
Parses the specified source as a schema and returns it as a schema.
|
abstract Schema |
SchemaFactory.newSchema(Source[] schemas)
Parses the specified source(s) as a schema and returns it as a schema.
|
Schema |
SchemaFactory.newSchema(java.net.URL schema)
Parses the specified
URL as a schema and returns it as a Schema . |
void |
Validator.validate(Source source)
Validates the specified input.
|
abstract void |
Validator.validate(Source source,
Result result)
Validates the specified input and send the augmented validation
result to the specified output.
|
Modifier and Type | Method and Description |
---|---|
void |
PipeDocument.pipeDocument(XSLProcessorContext context,
ElemExtensionCall elem)
Extension element for piping an XML document through a series of 1 or more transformations.
|
void |
PipeDocument.usePipe(java.util.Vector vTHandler,
java.lang.String source,
java.lang.String target)
Uses a Vector of TransformerHandlers to pipe XML input document through
a series of 1 or more transformations.
|
Modifier and Type | Method and Description |
---|---|
void |
DTMDocument.CharacterNodeHandler.characters(Node node) |
void |
DTMDocument.dispatchCharactersEvents(int nodeHandle,
ContentHandler ch,
boolean normalize) |
void |
DTMDocument.dispatchToEvents(int parm1,
ContentHandler parm2) |
Modifier and Type | Method and Description |
---|---|
void |
StylesheetHandler.characters(char[] ch,
int start,
int length)
Receive notification of character data inside an element.
|
void |
XSLTElementProcessor.characters(StylesheetHandler handler,
char[] ch,
int start,
int length)
Receive notification of character data inside an element.
|
void |
ProcessorCharacters.characters(StylesheetHandler handler,
char[] ch,
int start,
int length)
Receive notification of character data inside an element.
|
void |
StylesheetHandler.endDocument()
Receive notification of the end of the document.
|
void |
StylesheetHandler.endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName)
Receive notification of the end of an element.
|
void |
XSLTElementProcessor.endElement(StylesheetHandler handler,
java.lang.String uri,
java.lang.String localName,
java.lang.String rawName)
Receive notification of the end of an element.
|
void |
ProcessorText.endElement(StylesheetHandler handler,
java.lang.String uri,
java.lang.String localName,
java.lang.String rawName)
Receive notification of the end of an element.
|
void |
ProcessorTemplateElem.endElement(StylesheetHandler handler,
java.lang.String uri,
java.lang.String localName,
java.lang.String rawName)
Receive notification of the end of an element.
|
void |
ProcessorStylesheetElement.endElement(StylesheetHandler handler,
java.lang.String uri,
java.lang.String localName,
java.lang.String rawName)
Receive notification of the end of an element.
|
void |
ProcessorLRE.endElement(StylesheetHandler handler,
java.lang.String uri,
java.lang.String localName,
java.lang.String rawName)
Receive notification of the end of an element.
|
void |
ProcessorExsltFunction.endElement(StylesheetHandler handler,
java.lang.String uri,
java.lang.String localName,
java.lang.String rawName)
End an ElemExsltFunction, and verify its validity.
|
void |
ProcessorCharacters.endElement(StylesheetHandler handler,
java.lang.String uri,
java.lang.String localName,
java.lang.String rawName)
Receive notification of the end of an element.
|
void |
StylesheetHandler.endPrefixMapping(java.lang.String prefix)
Receive notification of the end of a Namespace mapping.
|
void |
StylesheetHandler.error(SAXParseException e)
Receive notification of a recoverable XSLT processing error.
|
void |
StylesheetHandler.fatalError(SAXParseException e)
Report a fatal XSLT processing error.
|
void |
StylesheetHandler.ignorableWhitespace(char[] ch,
int start,
int length)
Receive notification of ignorable whitespace in element content.
|
void |
XSLTElementProcessor.ignorableWhitespace(StylesheetHandler handler,
char[] ch,
int start,
int length)
Receive notification of ignorable whitespace in element content.
|
void |
StylesheetHandler.processingInstruction(java.lang.String target,
java.lang.String data)
Receive notification of a processing instruction.
|
void |
XSLTElementProcessor.processingInstruction(StylesheetHandler handler,
java.lang.String target,
java.lang.String data)
Receive notification of a processing instruction.
|
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.
|
void |
StylesheetHandler.skippedEntity(java.lang.String name)
Receive notification of a skipped entity.
|
void |
XSLTElementProcessor.skippedEntity(StylesheetHandler handler,
java.lang.String name)
Receive notification of a skipped entity.
|
void |
StylesheetHandler.startDocument()
Receive notification of the beginning of the document.
|
void |
StylesheetHandler.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
Attributes attributes)
Receive notification of the start of an element.
|
void |
XSLTElementProcessor.startElement(StylesheetHandler handler,
java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
Attributes attributes)
Receive notification of the start of an element.
|
void |
ProcessorTemplateElem.startElement(StylesheetHandler handler,
java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
Attributes attributes)
Receive notification of the start of an element.
|
void |
ProcessorStylesheetElement.startElement(StylesheetHandler handler,
java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
Attributes attributes)
Receive notification of the start of an strip-space element.
|
void |
ProcessorLRE.startElement(StylesheetHandler handler,
java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
Attributes attributes)
Receive notification of the start of an element.
|
void |
ProcessorInclude.startElement(StylesheetHandler handler,
java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
Attributes attributes)
Receive notification of the start of an xsl:include element.
|
void |
ProcessorExsltFunction.startElement(StylesheetHandler handler,
java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
Attributes attributes)
Start an ElemExsltFunction.
|
void |
ProcessorExsltFuncResult.startElement(StylesheetHandler handler,
java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
Attributes attributes)
Verify that the func:result element does not appear within a variable,
parameter, or another func:result, and that it belongs to a func:function
element.
|
void |
XSLTElementProcessor.startNonText(StylesheetHandler handler)
Receive notification of the start of the non-text event.
|
void |
ProcessorCharacters.startNonText(StylesheetHandler handler)
Receive notification of the start of the non-text event.
|
void |
StylesheetHandler.startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Receive notification of the start of a Namespace mapping.
|
void |
ProcessorExsltFunction.validate(ElemTemplateElement elem,
StylesheetHandler handler)
Non-recursive traversal of FunctionElement tree based on TreeWalker to verify that
there are no literal result elements except within a func:result element and that
the func:result element does not contain any following siblings except xsl:fallback.
|
void |
StylesheetHandler.warn(java.lang.String msg,
java.lang.Object[] args)
Warn the user of an problem.
|
void |
StylesheetHandler.warning(SAXParseException e)
Receive notification of a XSLT processing warning.
|
Modifier and Type | Method and Description |
---|---|
static void |
SerializerUtils.ensureNamespaceDeclDeclared(SerializationHandler handler,
DTM dtm,
int namespace)
This function checks to make sure a given prefix is really
declared.
|
static void |
SerializerUtils.outputResultTreeFragment(SerializationHandler handler,
XObject obj,
XPathContext support)
Given a result tree fragment, walk the tree and
output it to the SerializationHandler.
|
Modifier and Type | Method and Description |
---|---|
void |
TransformerIdentityImpl.attributeDecl(java.lang.String eName,
java.lang.String aName,
java.lang.String type,
java.lang.String valueDefault,
java.lang.String value)
Report an attribute type declaration.
|
void |
TransformerHandlerImpl.attributeDecl(java.lang.String eName,
java.lang.String aName,
java.lang.String type,
java.lang.String valueDefault,
java.lang.String value)
Report an attribute type declaration.
|
void |
TransformerIdentityImpl.characters(char[] ch,
int start,
int length)
Receive notification of character data inside an element.
|
void |
TransformerHandlerImpl.characters(char[] ch,
int start,
int length)
Filter a character data event.
|
void |
TransformerIdentityImpl.comment(char[] ch,
int start,
int length)
Report an XML comment anywhere in the document.
|
void |
TransformerHandlerImpl.comment(char[] ch,
int start,
int length)
Report an XML comment anywhere in the document.
|
void |
TransformerIdentityImpl.elementDecl(java.lang.String name,
java.lang.String model)
Report an element type declaration.
|
void |
TransformerHandlerImpl.elementDecl(java.lang.String name,
java.lang.String model)
Report an element type declaration.
|
void |
TransformerIdentityImpl.endCDATA()
Report the end of a CDATA section.
|
void |
TransformerHandlerImpl.endCDATA()
Report the end of a CDATA section.
|
void |
TransformerIdentityImpl.endDocument()
Receive notification of the end of the document.
|
void |
TransformerHandlerImpl.endDocument()
Filter an end document event.
|
void |
TransformerIdentityImpl.endDTD()
Report the end of DTD declarations.
|
void |
TransformerHandlerImpl.endDTD()
Report the end of DTD declarations.
|
void |
TransformerIdentityImpl.endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName)
Receive notification of the end of an element.
|
void |
TransformerHandlerImpl.endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName)
Filter an end element event.
|
void |
TransformerIdentityImpl.endEntity(java.lang.String name)
Report the end of an entity.
|
void |
TransformerHandlerImpl.endEntity(java.lang.String name)
Report the end of an entity.
|
void |
TransformerIdentityImpl.endPrefixMapping(java.lang.String prefix)
Receive notification of the end of a Namespace mapping.
|
void |
TransformerHandlerImpl.endPrefixMapping(java.lang.String prefix)
Filter an end Namespace prefix mapping event.
|
void |
TransformerHandlerImpl.error(SAXParseException e)
Filter an error event.
|
void |
TransformerIdentityImpl.externalEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Report a parsed external entity declaration.
|
void |
TransformerHandlerImpl.externalEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Report a parsed external entity declaration.
|
void |
TransformerHandlerImpl.fatalError(SAXParseException e)
Filter a fatal error event.
|
void |
TransformerIdentityImpl.ignorableWhitespace(char[] ch,
int start,
int length)
Receive notification of ignorable whitespace in element content.
|
void |
TransformerHandlerImpl.ignorableWhitespace(char[] ch,
int start,
int length)
Filter an ignorable whitespace event.
|
void |
TransformerIdentityImpl.internalEntityDecl(java.lang.String name,
java.lang.String value)
Report an internal entity declaration.
|
void |
TransformerHandlerImpl.internalEntityDecl(java.lang.String name,
java.lang.String value)
Report an internal entity declaration.
|
void |
TransformerIdentityImpl.notationDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Receive notification of a notation declaration.
|
void |
TransformerHandlerImpl.notationDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Filter a notation declaration event.
|
void |
TrAXFilter.parse(InputSource input)
Parse a document.
|
void |
TrAXFilter.parse(java.lang.String systemId)
Parse a document.
|
void |
TransformerIdentityImpl.processingInstruction(java.lang.String target,
java.lang.String data)
Receive notification of a processing instruction.
|
void |
TransformerHandlerImpl.processingInstruction(java.lang.String target,
java.lang.String data)
Filter a processing instruction event.
|
InputSource |
TransformerHandlerImpl.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
Filter an external entity resolution.
|
void |
TransformerIdentityImpl.skippedEntity(java.lang.String name)
Receive notification of a skipped entity.
|
void |
TransformerHandlerImpl.skippedEntity(java.lang.String name)
Filter a skipped entity event.
|
void |
TransformerIdentityImpl.startCDATA()
Report the start of a CDATA section.
|
void |
TransformerHandlerImpl.startCDATA()
Report the start of a CDATA section.
|
void |
TransformerIdentityImpl.startDocument()
Receive notification of the beginning of the document.
|
void |
TransformerHandlerImpl.startDocument()
Filter a start document event.
|
void |
TransformerIdentityImpl.startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Report the start of DTD declarations, if any.
|
void |
TransformerHandlerImpl.startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Report the start of DTD declarations, if any.
|
void |
TransformerIdentityImpl.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
Attributes attributes)
Receive notification of the start of an element.
|
void |
TransformerHandlerImpl.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
Attributes atts)
Filter a start element event.
|
void |
TransformerIdentityImpl.startEntity(java.lang.String name)
Report the beginning of an entity in content.
|
void |
TransformerHandlerImpl.startEntity(java.lang.String name)
Report the beginning of an entity in content.
|
void |
TransformerIdentityImpl.startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Receive notification of the start of a Namespace mapping.
|
void |
TransformerHandlerImpl.startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Filter a start Namespace prefix mapping event.
|
void |
TreeWalker2Result.traverse(int pos)
Perform a pre-order traversal non-recursive style.
|
void |
TransformerIdentityImpl.unparsedEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId,
java.lang.String notationName)
Receive notification of an unparsed entity declaration.
|
void |
TransformerHandlerImpl.unparsedEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId,
java.lang.String notationName)
Filter an unparsed entity declaration event.
|
void |
TransformerImpl.waitTransformThread()
Used by SourceTreeHandler to wait until the transform
completes
|
void |
TransformerHandlerImpl.warning(SAXParseException e)
Filter a warning event.
|
Modifier and Type | Class and Description |
---|---|
class |
TransletException |
Modifier and Type | Method and Description |
---|---|
void |
Parser.startElement(java.lang.String uri,
java.lang.String localname,
java.lang.String qname,
Attributes attributes)
SAX2: Receive notification of the beginning of an element.
|
Modifier and Type | Method and Description |
---|---|
void |
AdaptiveResultTreeImpl.addUniqueAttribute(java.lang.String qName,
java.lang.String value,
int flags) |
void |
SimpleResultTreeImpl.characters(char[] ch,
int offset,
int length) |
void |
SAXImpl.characters(char[] ch,
int start,
int length)
SAX2: Receive notification of character data.
|
void |
AdaptiveResultTreeImpl.characters(char[] ch,
int offset,
int length) |
void |
SimpleResultTreeImpl.characters(java.lang.String str) |
void |
AdaptiveResultTreeImpl.characters(java.lang.String str) |
void |
SAXImpl.comment(char[] ch,
int start,
int length)
SAX2: Report an XML comment anywhere in the document.
|
void |
AdaptiveResultTreeImpl.comment(char[] chars,
int offset,
int length) |
void |
AdaptiveResultTreeImpl.comment(java.lang.String comment) |
void |
SimpleResultTreeImpl.dispatchCharactersEvents(int nodeHandle,
ContentHandler ch,
boolean normalize) |
void |
AdaptiveResultTreeImpl.dispatchCharactersEvents(int nodeHandle,
ContentHandler ch,
boolean normalize) |
void |
SimpleResultTreeImpl.dispatchToEvents(int nodeHandle,
ContentHandler ch) |
void |
AdaptiveResultTreeImpl.dispatchToEvents(int nodeHandle,
ContentHandler ch) |
void |
SimpleResultTreeImpl.endDocument() |
void |
SAXImpl.endDocument()
SAX2: Receive notification of the end of a document.
|
void |
AdaptiveResultTreeImpl.endDocument() |
void |
AdaptiveResultTreeImpl.endElement(java.lang.String elementName) |
void |
SAXImpl.endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qname)
SAX2: Receive notification of the end of an element.
|
void |
AdaptiveResultTreeImpl.endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName) |
void |
SAXImpl.ignorableWhitespace(char[] ch,
int start,
int length)
SAX2: Receive notification of ignorable whitespace in element
content.
|
void |
AdaptiveResultTreeImpl.namespaceAfterStartElement(java.lang.String prefix,
java.lang.String uri) |
void |
SAXImpl.processingInstruction(java.lang.String target,
java.lang.String data)
SAX2: Receive notification of a processing instruction.
|
void |
AdaptiveResultTreeImpl.processingInstruction(java.lang.String target,
java.lang.String data) |
boolean |
SimpleResultTreeImpl.setEscaping(boolean escape) |
boolean |
AdaptiveResultTreeImpl.setEscaping(boolean escape) |
void |
SimpleResultTreeImpl.startDocument()
We only need to override the endDocument, characters, and
setEscaping interfaces.
|
void |
SAXImpl.startDocument()
SAX2: Receive notification of the beginning of a document.
|
void |
AdaptiveResultTreeImpl.startDocument() |
void |
AdaptiveResultTreeImpl.startElement(java.lang.String elementName) |
void |
AdaptiveResultTreeImpl.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName) |
void |
SAXImpl.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qname,
Attributes attributes)
SAX2: Receive notification of the beginning of an element.
|
void |
AdaptiveResultTreeImpl.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
Attributes attributes) |
void |
SAXImpl.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qname,
Attributes attributes,
Node node)
Specialized interface used by DOM2SAX.
|
void |
SAXImpl.startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
SAX2: Begin the scope of a prefix-URI Namespace mapping.
|
Constructor and Description |
---|
DocumentCache(int size)
DocumentCache constructor
|
DocumentCache(int size,
XSLTCDTMManager dtmManager)
DocumentCache constructor
|
Modifier and Type | Method and Description |
---|---|
void |
StringValueHandler.characters(char[] ch,
int off,
int len) |
void |
StringValueHandler.characters(java.lang.String characters) |
void |
StringValueHandler.endElement(java.lang.String qname) |
void |
StringValueHandler.startElement(java.lang.String qname) |
Modifier and Type | Method and Description |
---|---|
void |
TransformerHandlerImpl.attributeDecl(java.lang.String eName,
java.lang.String aName,
java.lang.String type,
java.lang.String valueDefault,
java.lang.String value)
Implements org.xml.sax.ext.DeclHandler.attributeDecl()
|
void |
TransformerHandlerImpl.characters(char[] ch,
int start,
int length)
Implements org.xml.sax.ContentHandler.characters()
Receive notification of character data.
|
void |
TransformerHandlerImpl.comment(char[] ch,
int start,
int length)
Implements org.xml.sax.ext.LexicalHandler.comment()
Receieve notification of a comment
|
void |
TransformerHandlerImpl.elementDecl(java.lang.String name,
java.lang.String model)
Implements org.xml.sax.ext.DeclHandler.elementDecl()
|
void |
TransformerHandlerImpl.endCDATA()
Implements org.xml.sax.ext.LexicalHandler.endCDATA()
|
void |
TransformerHandlerImpl.endDocument()
Implements org.xml.sax.ContentHandler.endDocument()
Receive notification of the end of a document.
|
void |
TemplatesHandlerImpl.endDocument()
Just forward SAX2 event to parser object.
|
void |
TransformerHandlerImpl.endDTD()
Implements org.xml.sax.ext.LexicalHandler.endDTD()
|
void |
TransformerHandlerImpl.endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qname)
Implements org.xml.sax.ContentHandler.endElement()
Receive notification of the end of an element.
|
void |
TransformerHandlerImpl.endEntity(java.lang.String name)
Implements org.xml.sax.ext.LexicalHandler.endEntity()
|
void |
TransformerHandlerImpl.endPrefixMapping(java.lang.String prefix)
Implements org.xml.sax.ContentHandler.endPrefixMapping()
End the scope of a prefix-URI Namespace mapping.
|
void |
TransformerHandlerImpl.externalEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Implements org.xml.sax.ext.DeclHandler.externalEntityDecl()
|
void |
TransformerHandlerImpl.ignorableWhitespace(char[] ch,
int start,
int length)
Implements org.xml.sax.ContentHandler.ignorableWhitespace()
Receive notification of ignorable whitespace in element
content.
|
void |
TransformerHandlerImpl.internalEntityDecl(java.lang.String name,
java.lang.String value)
Implements org.xml.sax.ext.DeclHandler.externalEntityDecl()
|
void |
TransformerHandlerImpl.notationDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Implements org.xml.sax.DTDHandler.notationDecl()
|
void |
DOM2TO.parse() |
void |
DOM2SAX.parse() |
void |
TrAXFilter.parse(InputSource input) |
void |
DOM2TO.parse(InputSource unused) |
void |
DOM2SAX.parse(InputSource unused) |
void |
TrAXFilter.parse(java.lang.String systemId) |
void |
DOM2TO.parse(java.lang.String sysId)
This class is only used internally so this method should never
be called.
|
void |
DOM2SAX.parse(java.lang.String sysId)
This class is only used internally so this method should never
be called.
|
void |
TransformerHandlerImpl.processingInstruction(java.lang.String target,
java.lang.String data)
Implements org.xml.sax.ContentHandler.processingInstruction()
Receive notification of a processing instruction.
|
void |
TransformerHandlerImpl.skippedEntity(java.lang.String name)
Implements org.xml.sax.ContentHandler.skippedEntity()
Receive notification of a skipped entity.
|
void |
TransformerHandlerImpl.startCDATA()
Implements org.xml.sax.ext.LexicalHandler.startCDATA()
|
void |
TransformerHandlerImpl.startDocument()
Implements org.xml.sax.ContentHandler.startDocument()
Receive notification of the beginning of a document.
|
void |
TransformerHandlerImpl.startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Implements org.xml.sax.ext.LexicalHandler.startDTD()
|
void |
SAX2DOM.startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId) |
void |
TransformerHandlerImpl.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qname,
Attributes attributes)
Implements org.xml.sax.ContentHandler.startElement()
Receive notification of the beginning of an element.
|
void |
TemplatesHandlerImpl.startElement(java.lang.String uri,
java.lang.String localname,
java.lang.String qname,
Attributes attributes)
Just forward SAX2 event to parser object.
|
void |
TransformerHandlerImpl.startEntity(java.lang.String name)
Implements org.xml.sax.ext.LexicalHandler.startEntity()
|
void |
TransformerHandlerImpl.startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Implements org.xml.sax.ContentHandler.startPrefixMapping()
Begin the scope of a prefix-URI Namespace mapping.
|
void |
TransformerHandlerImpl.unparsedEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId,
java.lang.String notationName)
Implements org.xml.sax.DTDHandler.unparsedEntityDecl()
|
Modifier and Type | Method and Description |
---|---|
void |
DTM.dispatchCharactersEvents(int nodeHandle,
ContentHandler ch,
boolean normalize)
Directly call the
characters method on the passed ContentHandler for the
string-value of the given node (see http://www.w3.org/TR/xpath#data-model
for the definition of a node's string-value).
|
void |
DTM.dispatchToEvents(int nodeHandle,
ContentHandler ch)
Directly create SAX parser events representing the XML content of
a DTM subtree.
|
Modifier and Type | Method and Description |
---|---|
void |
IncrementalSAXSource_Filter.characters(char[] ch,
int start,
int length) |
void |
DTMDocumentImpl.characters(char[] ch,
int start,
int length) |
void |
IncrementalSAXSource_Filter.comment(char[] ch,
int start,
int length) |
void |
DTMDocumentImpl.comment(char[] ch,
int start,
int length) |
void |
DTMDocumentImpl.dispatchCharactersEvents(int nodeHandle,
ContentHandler ch,
boolean normalize)
Directly call the
characters method on the passed ContentHandler for the
string-value of the given node (see http://www.w3.org/TR/xpath#data-model
for the definition of a node's string-value).
|
abstract void |
DTMDefaultBase.dispatchCharactersEvents(int nodeHandle,
ContentHandler ch,
boolean normalize)
Directly call the
characters method on the passed ContentHandler for the
string-value of the given node (see http://www.w3.org/TR/xpath#data-model
for the definition of a node's string-value).
|
void |
DTMDocumentImpl.dispatchToEvents(int nodeHandle,
ContentHandler ch)
Directly create SAX parser events from a subtree.
|
abstract void |
DTMDefaultBase.dispatchToEvents(int nodeHandle,
ContentHandler ch)
Directly create SAX parser events from a subtree.
|
void |
IncrementalSAXSource_Filter.endCDATA() |
void |
DTMDocumentImpl.endCDATA() |
void |
IncrementalSAXSource_Filter.endDocument() |
void |
DTMDocumentImpl.endDocument() |
void |
IncrementalSAXSource_Filter.endDTD() |
void |
DTMDocumentImpl.endDTD() |
void |
IncrementalSAXSource_Filter.endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName) |
void |
DTMDocumentImpl.endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName) |
void |
IncrementalSAXSource_Filter.endEntity(java.lang.String name) |
void |
DTMDocumentImpl.endEntity(java.lang.String name) |
void |
IncrementalSAXSource_Filter.endPrefixMapping(java.lang.String prefix) |
void |
DTMDocumentImpl.endPrefixMapping(java.lang.String prefix) |
void |
IncrementalSAXSource_Filter.error(SAXParseException exception) |
void |
IncrementalSAXSource_Filter.fatalError(SAXParseException exception) |
void |
IncrementalSAXSource_Filter.ignorableWhitespace(char[] ch,
int start,
int length) |
void |
DTMDocumentImpl.ignorableWhitespace(char[] ch,
int start,
int length) |
void |
IncrementalSAXSource_Filter.notationDecl(java.lang.String a,
java.lang.String b,
java.lang.String c) |
void |
IncrementalSAXSource_Filter.processingInstruction(java.lang.String target,
java.lang.String data) |
void |
DTMDocumentImpl.processingInstruction(java.lang.String target,
java.lang.String data) |
void |
IncrementalSAXSource_Filter.skippedEntity(java.lang.String name) |
void |
DTMDocumentImpl.skippedEntity(java.lang.String name) |
void |
IncrementalSAXSource_Filter.startCDATA() |
void |
DTMDocumentImpl.startCDATA() |
void |
IncrementalSAXSource_Filter.startDocument() |
void |
DTMDocumentImpl.startDocument() |
void |
IncrementalSAXSource_Filter.startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId) |
void |
DTMDocumentImpl.startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId) |
void |
IncrementalSAXSource_Filter.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName,
Attributes atts) |
void |
DTMDocumentImpl.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName,
Attributes atts) |
void |
IncrementalSAXSource_Filter.startEntity(java.lang.String name) |
void |
DTMDocumentImpl.startEntity(java.lang.String name) |
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.
|
void |
IncrementalSAXSource_Filter.startPrefixMapping(java.lang.String prefix,
java.lang.String uri) |
void |
DTMDocumentImpl.startPrefixMapping(java.lang.String prefix,
java.lang.String uri) |
void |
DTMTreeWalker.traverse(int pos)
Perform a non-recursive pre-order/post-order traversal,
operating as a Visitor. startNode (preorder) and endNode
(postorder) are invoked for each node as we traverse over them,
with the result that the node is written out to m_contentHandler.
|
void |
DTMTreeWalker.traverse(int pos,
int top)
Perform a non-recursive pre-order/post-order traversal,
operating as a Visitor. startNode (preorder) and endNode
(postorder) are invoked for each node as we traverse over them,
with the result that the node is written out to m_contentHandler.
|
void |
IncrementalSAXSource_Filter.unparsedEntityDecl(java.lang.String a,
java.lang.String b,
java.lang.String c,
java.lang.String d) |
void |
IncrementalSAXSource_Filter.warning(SAXParseException exception) |
Modifier and Type | Method and Description |
---|---|
void |
DOM2DTM.CharacterNodeHandler.characters(Node node) |
void |
DOM2DTM.dispatchCharactersEvents(int nodeHandle,
ContentHandler ch,
boolean normalize)
Directly call the
characters method on the passed ContentHandler for the
string-value of the given node (see http://www.w3.org/TR/xpath#data-model
for the definition of a node's string-value).
|
void |
DOM2DTM.dispatchToEvents(int nodeHandle,
ContentHandler ch)
Directly create SAX parser events from a subtree.
|
Modifier and Type | Method and Description |
---|---|
void |
SAX2DTM.attributeDecl(java.lang.String eName,
java.lang.String aName,
java.lang.String type,
java.lang.String valueDefault,
java.lang.String value)
Report an attribute type declaration.
|
void |
SAX2DTM.characters(char[] ch,
int start,
int length)
Receive notification of character data inside an element.
|
void |
SAX2DTM2.comment(char[] ch,
int start,
int length)
Report an XML comment anywhere in the document.
|
void |
SAX2DTM.comment(char[] ch,
int start,
int length)
Report an XML comment anywhere in the document.
|
void |
SAX2DTM2.dispatchCharactersEvents(int nodeHandle,
ContentHandler ch,
boolean normalize)
The optimized version of SAX2DTM.dispatchCharactersEvents(int, ContentHandler, boolean).
|
void |
SAX2DTM.dispatchCharactersEvents(int nodeHandle,
ContentHandler ch,
boolean normalize)
Directly call the
characters method on the passed ContentHandler for the
string-value of the given node (see http://www.w3.org/TR/xpath#data-model
for the definition of a node's string-value).
|
void |
SAX2DTM.dispatchToEvents(int nodeHandle,
ContentHandler ch)
Directly create SAX parser events from a subtree.
|
void |
SAX2DTM.elementDecl(java.lang.String name,
java.lang.String model)
Report an element type declaration.
|
void |
SAX2DTM.endCDATA()
Report the end of a CDATA section.
|
void |
SAX2RTFDTM.endDocument()
Receive notification of the end of the document.
|
void |
SAX2DTM2.endDocument()
Receive notification of the end of the document.
|
void |
SAX2DTM.endDocument()
Receive notification of the end of the document.
|
void |
SAX2DTM.endDTD()
Report the end of DTD declarations.
|
void |
SAX2DTM2.endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName)
Receive notification of the end of an element.
|
void |
SAX2DTM.endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName)
Receive notification of the end of an element.
|
void |
SAX2DTM.endEntity(java.lang.String name)
Report the end of an entity.
|
void |
SAX2DTM.endPrefixMapping(java.lang.String prefix)
Receive notification of the end of a Namespace mapping.
|
void |
SAX2DTM.error(SAXParseException e)
Receive notification of a recoverable parser error.
|
void |
SAX2DTM.externalEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Report a parsed external entity declaration.
|
void |
SAX2DTM.fatalError(SAXParseException e)
Report a fatal XML parsing error.
|
void |
SAX2DTM.ignorableWhitespace(char[] ch,
int start,
int length)
Receive notification of ignorable whitespace in element content.
|
void |
SAX2DTM.internalEntityDecl(java.lang.String name,
java.lang.String value)
Report an internal entity declaration.
|
void |
SAX2DTM.notationDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Receive notification of a notation declaration.
|
void |
SAX2DTM2.processingInstruction(java.lang.String target,
java.lang.String data)
Override the processingInstruction() interface in SAX2DTM2.
|
void |
SAX2DTM.processingInstruction(java.lang.String target,
java.lang.String data)
Receive notification of a processing instruction.
|
InputSource |
SAX2DTM.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
Resolve an external entity.
|
void |
SAX2DTM.skippedEntity(java.lang.String name)
Receive notification of a skipped entity.
|
void |
SAX2DTM.startCDATA()
Report the start of a CDATA section.
|
void |
SAX2RTFDTM.startDocument()
Receive notification of the beginning of a new RTF document.
|
void |
SAX2DTM2.startDocument()
Receive notification of the beginning of the document.
|
void |
SAX2DTM.startDocument()
Receive notification of the beginning of the document.
|
void |
SAX2DTM.startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Report the start of DTD declarations, if any.
|
void |
SAX2DTM2.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
Attributes attributes)
Override SAX2DTM.startElement()
Receive notification of the start of an element.
|
void |
SAX2DTM.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
Attributes attributes)
Receive notification of the start of an element.
|
void |
SAX2DTM.startEntity(java.lang.String name)
Report the beginning of an entity in content.
|
void |
SAX2DTM.startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Receive notification of the start of a Namespace mapping.
|
void |
SAX2DTM.unparsedEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId,
java.lang.String notationName)
Receive notification of an unparsed entity declaration.
|
void |
SAX2DTM.warning(SAXParseException e)
Receive notification of a parser warning.
|
Modifier and Type | Method and Description |
---|---|
void |
SerializerBase.addAttribute(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
java.lang.String type,
java.lang.String value)
This method adds an attribute the the current element,
but should not be used for an xsl:attribute child.
|
void |
ExtendedContentHandler.addAttribute(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
java.lang.String type,
java.lang.String value)
Add at attribute to the current element, not from an xsl:attribute
element.
|
void |
EmptySerializer.addAttribute(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
java.lang.String type,
java.lang.String value) |
void |
ToXMLStream.addAttribute(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
java.lang.String type,
java.lang.String value,
boolean xslAttribute)
Add an attribute to the current element.
|
void |
ToXMLSAXHandler.addAttribute(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
java.lang.String type,
java.lang.String value,
boolean XSLAttribute)
Adds the given attribute to the set of attributes, and also makes sure
that the needed prefix/uri mapping is declared, but only if there is a
currently open element.
|
void |
ToUnknownStream.addAttribute(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
java.lang.String type,
java.lang.String value,
boolean XSLAttribute)
Adds an attribute to the currenly open tag
|
void |
SerializerBase.addAttribute(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
java.lang.String type,
java.lang.String value,
boolean XSLAttribute)
Adds the given attribute to the set of collected attributes , but only if
there is a currently open element.
|
void |
ExtendedContentHandler.addAttribute(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
java.lang.String type,
java.lang.String value,
boolean XSLAttribute)
Add at attribute to the current element
|
void |
EmptySerializer.addAttribute(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
java.lang.String type,
java.lang.String value,
boolean XSLAttribute) |
void |
ToUnknownStream.addAttributes(Attributes atts) |
void |
SerializerBase.addAttributes(Attributes atts)
Add the given attributes to the currently collected ones.
|
void |
ExtendedContentHandler.addAttributes(Attributes atts)
Add attributes to the current element
|
void |
EmptySerializer.addAttributes(Attributes atts) |
void |
ToXMLStream.addUniqueAttribute(java.lang.String name,
java.lang.String value,
int flags)
This method is used to add an attribute to the currently open element.
|
void |
ToUnknownStream.addUniqueAttribute(java.lang.String rawName,
java.lang.String value,
int flags)
Adds a unique attribute to the currenly open tag
|
void |
ToTextStream.addUniqueAttribute(java.lang.String qName,
java.lang.String value,
int flags)
Add a unique attribute
|
void |
ToSAXHandler.addUniqueAttribute(java.lang.String qName,
java.lang.String value,
int flags)
Add a unique attribute
|
void |
ToHTMLStream.addUniqueAttribute(java.lang.String name,
java.lang.String value,
int flags)
This method is used to add an attribute to the currently open element.
|
void |
ExtendedContentHandler.addUniqueAttribute(java.lang.String qName,
java.lang.String value,
int flags)
Add a unique attribute to the current element.
|
void |
EmptySerializer.addUniqueAttribute(java.lang.String name,
java.lang.String value,
int flags) |
void |
ToXMLSAXHandler.attributeDecl(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2,
java.lang.String arg3,
java.lang.String arg4) |
void |
ToUnknownStream.attributeDecl(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2,
java.lang.String arg3,
java.lang.String arg4)
Pass the call on to the underlying handler
|
void |
ToTextSAXHandler.attributeDecl(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2,
java.lang.String arg3,
java.lang.String arg4)
Deprecated.
|
void |
ToStream.attributeDecl(java.lang.String eName,
java.lang.String aName,
java.lang.String type,
java.lang.String valueDefault,
java.lang.String value)
Report an attribute type declaration.
|
void |
ToHTMLStream.attributeDecl(java.lang.String eName,
java.lang.String aName,
java.lang.String type,
java.lang.String valueDefault,
java.lang.String value)
This method does nothing.
|
void |
ToHTMLSAXHandler.attributeDecl(java.lang.String eName,
java.lang.String aName,
java.lang.String type,
java.lang.String valueDefault,
java.lang.String value)
Deprecated.
Does nothing.
|
void |
EmptySerializer.attributeDecl(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2,
java.lang.String arg3,
java.lang.String arg4) |
void |
ToTextStream.cdata(char[] ch,
int start,
int length)
Receive notification of cdata.
|
void |
ToHTMLStream.cdata(char[] ch,
int start,
int length)
Receive notification of cdata.
|
void |
ToXMLSAXHandler.characters(char[] ch,
int off,
int len) |
void |
ToUnknownStream.characters(char[] characters,
int offset,
int length)
Pass the call on to the underlying handler
|
void |
ToTextStream.characters(char[] ch,
int start,
int length)
Receive notification of character data.
|
void |
ToTextSAXHandler.characters(char[] characters,
int offset,
int length)
Deprecated.
|
void |
ToStream.characters(char[] chars,
int start,
int length)
Receive notification of character data.
|
void |
ToHTMLStream.characters(char[] chars,
int start,
int length)
Receive notification of character data.
|
void |
ToHTMLSAXHandler.characters(char[] ch,
int off,
int len)
Deprecated.
Receive notification of character data.
|
void |
EmptySerializer.characters(char[] arg0,
int arg1,
int arg2) |
void |
ToSAXHandler.characters(Node node)
This method gets the node's value as a String and uses that String as if
it were an input character notification.
|
void |
SerializerBase.characters(Node node)
This method gets the nodes value as a String and uses that String as if
it were an input character notification.
|
void |
ExtendedContentHandler.characters(Node node)
This method is used to notify of a character event, but passing the data
as a DOM Node rather than the standard character array.
|
void |
EmptySerializer.characters(Node node) |
void |
ToXMLSAXHandler.characters(java.lang.String chars) |
void |
ToUnknownStream.characters(java.lang.String chars)
Converts the String to a character array and calls the SAX method
characters(char[],int,int);
|
void |
ToTextStream.characters(java.lang.String characters)
From XSLTC
|
void |
ToTextSAXHandler.characters(java.lang.String characters)
Deprecated.
|
void |
ToStream.characters(java.lang.String s)
Receive notification of character data.
|
void |
ToSAXHandler.characters(java.lang.String characters)
Receive notification of character data.
|
void |
ToHTMLSAXHandler.characters(java.lang.String chars)
Deprecated.
Receive notification of character data.
|
void |
ExtendedContentHandler.characters(java.lang.String chars)
This method is used to notify of a character event, but passing the data
as a character String rather than the standard character array.
|
void |
EmptySerializer.characters(java.lang.String chars) |
void |
ToTextStream.charactersRaw(char[] ch,
int start,
int length)
If available, when the disable-output-escaping attribute is used,
output raw text without escaping.
|
void |
ToXMLSAXHandler.closeCDATA()
Closes ane open cdata tag, and
unlike the this.endCDATA() method (from the LexicalHandler) interface,
this "internal" method will send the endCDATA() call to the wrapped
handler.
|
void |
ToXMLSAXHandler.comment(char[] arg0,
int arg1,
int arg2) |
void |
ToUnknownStream.comment(char[] ch,
int start,
int length)
Pass the call on to the underlying handler
|
void |
ToTextStream.comment(char[] ch,
int start,
int length)
Report an XML comment anywhere in the document.
|
void |
ToTextSAXHandler.comment(char[] ch,
int start,
int length)
Deprecated.
|
void |
ToStream.comment(char[] ch,
int start,
int length)
Receive notification of an XML comment anywhere in the document.
|
void |
ToHTMLStream.comment(char[] ch,
int start,
int length) |
void |
ToHTMLSAXHandler.comment(char[] ch,
int start,
int length)
Deprecated.
Receive notification of a comment anywhere in the document.
|
void |
EmptySerializer.comment(char[] arg0,
int arg1,
int arg2) |
void |
ToUnknownStream.comment(java.lang.String comment)
Pass the call on to the underlying handler
|
void |
ToTextStream.comment(java.lang.String data)
Called when a Comment is to be constructed.
|
void |
ToTextSAXHandler.comment(java.lang.String data)
Deprecated.
|
void |
ToSAXHandler.comment(java.lang.String comment)
Receive notification of a comment.
|
void |
SerializerBase.comment(java.lang.String data)
Receive notification of a comment.
|
void |
ExtendedLexicalHandler.comment(java.lang.String comment)
This method is used to notify of a comment
|
void |
EmptySerializer.comment(java.lang.String comment) |
void |
ToXMLSAXHandler.elementDecl(java.lang.String arg0,
java.lang.String arg1) |
void |
ToUnknownStream.elementDecl(java.lang.String arg0,
java.lang.String arg1)
Pass the call on to the underlying handler
|
void |
ToTextSAXHandler.elementDecl(java.lang.String arg0,
java.lang.String arg1)
Deprecated.
|
void |
ToStream.elementDecl(java.lang.String name,
java.lang.String model)
Report an element type declaration.
|
void |
ToHTMLStream.elementDecl(java.lang.String name,
java.lang.String model)
This method does nothing.
|
void |
ToHTMLSAXHandler.elementDecl(java.lang.String name,
java.lang.String model)
Deprecated.
Does nothing.
|
void |
EmptySerializer.elementDecl(java.lang.String arg0,
java.lang.String arg1) |
void |
ToXMLSAXHandler.endCDATA() |
void |
ToUnknownStream.endCDATA()
Pass the call on to the underlying handler
|
void |
ToTextStream.endCDATA() |
void |
ToTextSAXHandler.endCDATA()
Deprecated.
|
void |
ToStream.endCDATA()
Report the end of a CDATA section.
|
void |
ToHTMLSAXHandler.endCDATA()
Deprecated.
Does nothing.
|
void |
EmptySerializer.endCDATA() |
void |
ToXMLStream.endDocument()
Receive notification of the end of a document.
|
void |
ToXMLSAXHandler.endDocument()
Receives notification of the end of the document.
|
void |
ToUnknownStream.endDocument()
Pass the call on to the underlying handler
|
void |
ToTextStream.endDocument()
Receive notification of the end of a document.
|
void |
ToTextSAXHandler.endDocument()
Deprecated.
From XSLTC
|
void |
ToHTMLStream.endDocument()
Receive notification of the end of a document.
|
void |
ToHTMLSAXHandler.endDocument()
Deprecated.
Receive notification of the end of a document.
|
void |
EmptySerializer.endDocument() |
void |
ToXMLSAXHandler.endDTD() |
void |
ToUnknownStream.endDTD()
Pass the call on to the underlying handler
|
void |
ToTextSAXHandler.endDTD()
Deprecated.
|
void |
ToStream.endDTD()
Report the end of DTD declarations.
|
void |
ToHTMLStream.endDTD()
Report the end of DTD declarations.
|
void |
ToHTMLSAXHandler.endDTD()
Deprecated.
Does nothing.
|
void |
EmptySerializer.endDTD() |
void |
ToXMLStream.endElement(java.lang.String elemName) |
void |
ToXMLSAXHandler.endElement(java.lang.String elemName) |
void |
ToUnknownStream.endElement(java.lang.String elementName)
Pass the call on to the underlying handler
|
void |
ToTextStream.endElement(java.lang.String elemName) |
void |
ToTextSAXHandler.endElement(java.lang.String elemName)
Deprecated.
From XSLTC
|
void |
ToStream.endElement(java.lang.String name)
Receive notification of the end of an element.
|
void |
ToHTMLStream.endElement(java.lang.String elemName) |
void |
ToHTMLSAXHandler.endElement(java.lang.String elementName)
Deprecated.
Receive notification of the end of an element.
|
void |
ExtendedContentHandler.endElement(java.lang.String elemName)
This method is used to notify that an element has ended.
|
void |
EmptySerializer.endElement(java.lang.String elemName) |
void |
ToXMLSAXHandler.endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName) |
void |
ToUnknownStream.endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName)
Pass the call on to the underlying handler
|
void |
ToTextStream.endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String name)
Receive notification of the end of an element.
|
void |
ToTextSAXHandler.endElement(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2)
Deprecated.
|
void |
ToStream.endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String name)
Receive notification of the end of an element.
|
void |
ToHTMLStream.endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String name)
Receive notification of the end of an element.
|
void |
ToHTMLSAXHandler.endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName)
Deprecated.
Receive notification of the end of an element.
|
void |
EmptySerializer.endElement(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2) |
void |
ToUnknownStream.endEntity(java.lang.String name)
Pass the call on to the underlying handler
|
void |
SerializerBase.endEntity(java.lang.String name)
Report the end of an entity.
|
void |
EmptySerializer.endEntity(java.lang.String arg0) |
void |
ToStream.endNonEscaping()
Ends an un-escaping section.
|
void |
ToXMLSAXHandler.endPrefixMapping(java.lang.String prefix) |
void |
ToUnknownStream.endPrefixMapping(java.lang.String prefix)
Pass the call on to the underlying handler
|
void |
ToTextSAXHandler.endPrefixMapping(java.lang.String arg0)
Deprecated.
|
void |
ToStream.endPrefixMapping(java.lang.String prefix)
End the scope of a prefix-URI Namespace mapping.
|
void |
ToHTMLSAXHandler.endPrefixMapping(java.lang.String prefix)
Deprecated.
Does nothing.
|
void |
EmptySerializer.endPrefixMapping(java.lang.String arg0) |
void |
ToXMLStream.endPreserving()
Ends a whitespace preserving section.
|
void |
ToXMLStream.entityReference(java.lang.String name)
Receive notivication of a entityReference.
|
void |
ToUnknownStream.entityReference(java.lang.String entityName) |
void |
ToTextStream.entityReference(java.lang.String name)
Receive notivication of a entityReference.
|
void |
ToHTMLStream.entityReference(java.lang.String name)
Receive notivication of a entityReference.
|
void |
SerializerBase.entityReference(java.lang.String name)
Entity reference event.
|
void |
ExtendedContentHandler.entityReference(java.lang.String entityName)
Notify of an entity reference.
|
void |
EmptySerializer.entityReference(java.lang.String entityName) |
void |
ToSAXHandler.error(SAXParseException exc) |
void |
SerializerBase.error(SAXParseException exc) |
void |
EmptySerializer.error(SAXParseException arg0) |
void |
ToXMLSAXHandler.externalEntityDecl(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2) |
void |
ToUnknownStream.externalEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Pass the call on to the underlying handler
|
void |
ToTextSAXHandler.externalEntityDecl(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2)
Deprecated.
|
void |
ToStream.externalEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Report a parsed external entity declaration.
|
void |
ToHTMLStream.externalEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
This method does nothing.
|
void |
ToHTMLSAXHandler.externalEntityDecl(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2)
Deprecated.
|
void |
EmptySerializer.externalEntityDecl(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2) |
void |
ToSAXHandler.fatalError(SAXParseException exc) |
void |
SerializerBase.fatalError(SAXParseException exc) |
void |
EmptySerializer.fatalError(SAXParseException arg0) |
void |
SerializerBase.fireEndEntity(java.lang.String name)
To fire off end entity trace event
|
void |
ToUnknownStream.flushPending() |
void |
ToTextStream.flushPending() |
void |
ToStream.flushPending()
This method flushes any pending events, which can be startDocument()
closing the opening tag of an element, or closing an open CDATA section.
|
void |
ToSAXHandler.flushPending()
This method flushes any pending events, which can be startDocument()
closing the opening tag of an element, or closing an open CDATA section.
|
void |
ToHTMLSAXHandler.flushPending()
Deprecated.
This method flushes any pending events, which can be startDocument()
closing the opening tag of an element, or closing an open CDATA section.
|
void |
SerializationHandler.flushPending()
A SerializationHandler accepts SAX-like events, so
it can accumulate attributes or namespace nodes after
a startElement().
|
void |
EmptySerializer.flushPending() |
void |
ToXMLSAXHandler.ignorableWhitespace(char[] arg0,
int arg1,
int arg2) |
void |
ToUnknownStream.ignorableWhitespace(char[] ch,
int start,
int length)
Pass the call on to the underlying handler
|
void |
ToTextStream.ignorableWhitespace(char[] ch,
int start,
int length)
Receive notification of ignorable whitespace in element content.
|
void |
ToTextSAXHandler.ignorableWhitespace(char[] arg0,
int arg1,
int arg2)
Deprecated.
|
void |
ToStream.ignorableWhitespace(char[] ch,
int start,
int length)
Receive notification of ignorable whitespace in element content.
|
void |
ToHTMLSAXHandler.ignorableWhitespace(char[] ch,
int start,
int length)
Deprecated.
Does nothing.
|
void |
EmptySerializer.ignorableWhitespace(char[] arg0,
int arg1,
int arg2) |
void |
ToXMLSAXHandler.indent(int n)
Do nothing for SAX.
|
void |
ToTextSAXHandler.indent(int n)
Deprecated.
Does nothing because
the indent attribute is ignored for text output.
|
void |
ToHTMLSAXHandler.indent(int n)
Deprecated.
Does nothing.
|
void |
ToXMLSAXHandler.internalEntityDecl(java.lang.String arg0,
java.lang.String arg1) |
void |
ToUnknownStream.internalEntityDecl(java.lang.String arg0,
java.lang.String arg1)
Pass the call on to the underlying handler
|
void |
ToTextSAXHandler.internalEntityDecl(java.lang.String arg0,
java.lang.String arg1)
Deprecated.
|
void |
ToStream.internalEntityDecl(java.lang.String name,
java.lang.String value)
Report an internal entity declaration.
|
void |
ToHTMLStream.internalEntityDecl(java.lang.String name,
java.lang.String value)
This method does nothing.
|
void |
ToHTMLSAXHandler.internalEntityDecl(java.lang.String name,
java.lang.String value)
Deprecated.
Does nothing.
|
void |
EmptySerializer.internalEntityDecl(java.lang.String arg0,
java.lang.String arg1) |
void |
ToXMLStream.namespaceAfterStartElement(java.lang.String prefix,
java.lang.String uri)
This method is used to notify the serializer of a namespace mapping (or node)
that applies to the current element whose startElement() call has already been seen.
|
void |
ToXMLSAXHandler.namespaceAfterStartElement(java.lang.String prefix,
java.lang.String uri)
Send a namespace declaration in the output document.
|
void |
ToUnknownStream.namespaceAfterStartElement(java.lang.String prefix,
java.lang.String uri)
This method is used when a prefix/uri namespace mapping
is indicated after the element was started with a
startElement() and before and endElement().
|
void |
ToTextStream.namespaceAfterStartElement(java.lang.String prefix,
java.lang.String uri) |
void |
ToTextSAXHandler.namespaceAfterStartElement(java.lang.String prefix,
java.lang.String uri)
Deprecated.
|
void |
ToHTMLStream.namespaceAfterStartElement(java.lang.String prefix,
java.lang.String uri)
This method is used when a prefix/uri namespace mapping
is indicated after the element was started with a
startElement() and before and endElement().
|
void |
ToHTMLSAXHandler.namespaceAfterStartElement(java.lang.String prefix,
java.lang.String uri)
Deprecated.
This method is used when a prefix/uri namespace mapping
is indicated after the element was started with a
startElement() and before and endElement().
|
void |
SerializerBase.namespaceAfterStartElement(java.lang.String uri,
java.lang.String prefix)
This method is used when a prefix/uri namespace mapping
is indicated after the element was started with a
startElement() and before and endElement().
|
void |
ExtendedContentHandler.namespaceAfterStartElement(java.lang.String uri,
java.lang.String prefix)
This method is used to notify that a prefix mapping is to start, but
after an element is started.
|
void |
EmptySerializer.namespaceAfterStartElement(java.lang.String uri,
java.lang.String prefix) |
void |
ToStream.notationDecl(java.lang.String name,
java.lang.String pubID,
java.lang.String sysID)
If this method is called, the serializer is used as a
DTDHandler, which changes behavior how the serializer
handles document entities.
|
void |
SerializerBase.notationDecl(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2) |
void |
EmptySerializer.notationDecl(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2) |
void |
ToStream.processAttributes(java.io.Writer writer,
int nAttrs)
Process the attributes, which means to write out the currently
collected attributes to the writer.
|
void |
ToHTMLStream.processAttributes(java.io.Writer writer,
int nAttrs)
Process the attributes, which means to write out the currently
collected attributes to the writer.
|
void |
ToXMLStream.processingInstruction(java.lang.String target,
java.lang.String data)
Receive notification of a processing instruction.
|
void |
ToXMLSAXHandler.processingInstruction(java.lang.String target,
java.lang.String data) |
void |
ToUnknownStream.processingInstruction(java.lang.String target,
java.lang.String data)
Pass the call on to the underlying handler
|
void |
ToTextStream.processingInstruction(java.lang.String target,
java.lang.String data)
Receive notification of a processing instruction.
|
void |
ToTextSAXHandler.processingInstruction(java.lang.String arg0,
java.lang.String arg1)
Deprecated.
From XSLTC
|
void |
ToSAXHandler.processingInstruction(java.lang.String target,
java.lang.String data)
Do nothing as this is an abstract class.
|
void |
ToHTMLStream.processingInstruction(java.lang.String target,
java.lang.String data)
Receive notification of a processing instruction.
|
void |
ToHTMLSAXHandler.processingInstruction(java.lang.String target,
java.lang.String data)
Deprecated.
Receive notification of a processing instruction.
|
void |
EmptySerializer.processingInstruction(java.lang.String arg0,
java.lang.String arg1) |
boolean |
ToXMLSAXHandler.setEscaping(boolean escape) |
boolean |
ToUnknownStream.setEscaping(boolean escape) |
boolean |
ToHTMLSAXHandler.setEscaping(boolean escape)
Deprecated.
Turns special character escaping on/off.
|
boolean |
SerializationHandler.setEscaping(boolean escape)
Turns special character escaping on/off.
|
boolean |
EmptySerializer.setEscaping(boolean escape) |
void |
ToXMLSAXHandler.skippedEntity(java.lang.String arg0) |
void |
ToUnknownStream.skippedEntity(java.lang.String name)
Pass the call on to the underlying handler
|
void |
ToTextSAXHandler.skippedEntity(java.lang.String arg0)
Deprecated.
|
void |
ToStream.skippedEntity(java.lang.String name)
Receive notification of a skipped entity.
|
void |
ToHTMLSAXHandler.skippedEntity(java.lang.String arg0)
Deprecated.
Does nothing.
|
void |
EmptySerializer.skippedEntity(java.lang.String arg0) |
void |
ToXMLSAXHandler.startCDATA() |
void |
ToUnknownStream.startCDATA()
Pass the call on to the underlying handler
|
void |
ToTextSAXHandler.startCDATA()
Deprecated.
|
void |
ToStream.startCDATA()
Report the start of a CDATA section.
|
void |
ToHTMLSAXHandler.startCDATA()
Deprecated.
Does nothing.
|
void |
EmptySerializer.startCDATA() |
void |
ToUnknownStream.startDocument() |
void |
SerializerBase.startDocument()
Receive notification of the beginning of a document.
|
void |
EmptySerializer.startDocument() |
void |
ToXMLStream.startDocumentInternal()
Receive notification of the beginning of a document.
|
void |
ToUnknownStream.startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Pass the call on to the underlying handler
|
void |
ToStream.startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Report the start of DTD declarations, if any.
|
void |
ToSAXHandler.startDTD(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2)
Do nothing.
|
void |
ToHTMLStream.startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId) |
void |
EmptySerializer.startDTD(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2) |
void |
ToXMLSAXHandler.startElement(java.lang.String elementName) |
void |
ToUnknownStream.startElement(java.lang.String qName) |
void |
ToTextSAXHandler.startElement(java.lang.String elementName)
Deprecated.
|
void |
ToStream.startElement(java.lang.String elementName) |
void |
ToSAXHandler.startElement(java.lang.String qName)
An element starts, but attributes are not fully known yet.
|
void |
ToHTMLSAXHandler.startElement(java.lang.String elementName)
Deprecated.
An element starts, but attributes are not fully known yet.
|
void |
ExtendedContentHandler.startElement(java.lang.String qName)
This method is used to notify of the start of an element
|
void |
EmptySerializer.startElement(java.lang.String qName) |
void |
ToXMLSAXHandler.startElement(java.lang.String elementNamespaceURI,
java.lang.String elementLocalName,
java.lang.String elementName)
Start an element in the output document.
|
void |
ToUnknownStream.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName) |
void |
ToTextStream.startElement(java.lang.String elementNamespaceURI,
java.lang.String elementLocalName,
java.lang.String elementName)
From XSLTC
|
void |
ToTextSAXHandler.startElement(java.lang.String elementNamespaceURI,
java.lang.String elementLocalName,
java.lang.String elementName)
Deprecated.
From XSLTC
|
void |
ToStream.startElement(java.lang.String elementNamespaceURI,
java.lang.String elementLocalName,
java.lang.String elementName)
Receive notification of the beginning of an element, additional
namespace or attribute information can occur before or after this call,
that is associated with this element.
|
void |
ToSAXHandler.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName)
Receives notification that an element starts, but attributes are not
fully known yet.
|
void |
ToHTMLSAXHandler.startElement(java.lang.String elementNamespaceURI,
java.lang.String elementLocalName,
java.lang.String elementName)
Deprecated.
An element starts, but attributes are not fully known yet.
|
void |
ExtendedContentHandler.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName)
This method is used to notify that an element is starting.
|
void |
EmptySerializer.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName) |
void |
ToXMLSAXHandler.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String name,
Attributes atts) |
void |
ToUnknownStream.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String elementName,
Attributes atts) |
void |
ToTextStream.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String name,
Attributes atts)
Receive notification of the beginning of an element.
|
void |
ToTextSAXHandler.startElement(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2,
Attributes arg3)
Deprecated.
|
void |
ToStream.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String name,
Attributes atts)
Receive notification of the beginning of an element, although this is a
SAX method additional namespace or attribute information can occur before
or after this call, that is associated with this element.
|
void |
ToSAXHandler.startElement(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2,
Attributes arg3)
Receive notification of the beginning of an element, although this is a
SAX method additional namespace or attribute information can occur before
or after this call, that is associated with this element.
|
void |
ToHTMLStream.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String name,
Attributes atts)
Receive notification of the beginning of an element.
|
void |
ToHTMLSAXHandler.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName,
Attributes atts)
Deprecated.
Receive notification of the beginning of an element, although this is a
SAX method additional namespace or attribute information can occur before
or after this call, that is associated with this element.
|
void |
EmptySerializer.startElement(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2,
Attributes arg3) |
void |
ToXMLSAXHandler.startEntity(java.lang.String arg0) |
void |
ToUnknownStream.startEntity(java.lang.String name)
Pass the call on to the underlying handler
|
void |
ToTextSAXHandler.startEntity(java.lang.String arg0)
Deprecated.
|
void |
ToStream.startEntity(java.lang.String name)
Report the beginning of an entity.
|
void |
ToHTMLSAXHandler.startEntity(java.lang.String arg0)
Deprecated.
Does nothing.
|
void |
EmptySerializer.startEntity(java.lang.String arg0) |
void |
ToStream.startNonEscaping()
Starts an un-escaping section.
|
void |
ToXMLSAXHandler.startPrefixMapping(java.lang.String prefix,
java.lang.String uri) |
void |
ToUnknownStream.startPrefixMapping(java.lang.String prefix,
java.lang.String uri) |
void |
ToTextStream.startPrefixMapping(java.lang.String prefix,
java.lang.String uri) |
void |
ToTextSAXHandler.startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Deprecated.
|
void |
ToStream.startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Begin the scope of a prefix-URI Namespace mapping
just before another element is about to start.
|
void |
ToHTMLSAXHandler.startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Deprecated.
Begin the scope of a prefix-URI Namespace mapping
just before another element is about to start.
|
void |
EmptySerializer.startPrefixMapping(java.lang.String arg0,
java.lang.String arg1) |
boolean |
ToXMLSAXHandler.startPrefixMapping(java.lang.String prefix,
java.lang.String uri,
boolean shouldFlush)
Remember the prefix/uri mapping at the current nested element depth.
|
boolean |
ToUnknownStream.startPrefixMapping(java.lang.String prefix,
java.lang.String uri,
boolean shouldFlush) |
boolean |
ToTextStream.startPrefixMapping(java.lang.String prefix,
java.lang.String uri,
boolean shouldFlush) |
boolean |
ToTextSAXHandler.startPrefixMapping(java.lang.String prefix,
java.lang.String uri,
boolean shouldFlush)
Deprecated.
|
boolean |
ToStream.startPrefixMapping(java.lang.String prefix,
java.lang.String uri,
boolean shouldFlush)
Handle a prefix/uri mapping, which is associated with a startElement()
that is soon to follow.
|
boolean |
ToHTMLSAXHandler.startPrefixMapping(java.lang.String prefix,
java.lang.String uri,
boolean shouldFlush)
Deprecated.
Handle a prefix/uri mapping, which is associated with a startElement()
that is soon to follow.
|
boolean |
ExtendedContentHandler.startPrefixMapping(java.lang.String prefix,
java.lang.String uri,
boolean shouldFlush)
This method is used to notify that a prefix maping is to start, which can
be for the current element, or for the one to come.
|
boolean |
EmptySerializer.startPrefixMapping(java.lang.String prefix,
java.lang.String uri,
boolean shouldFlush) |
void |
ToXMLStream.startPreserving()
Starts a whitespace preserving section.
|
void |
TreeWalker.traverse(Node pos)
Perform a pre-order traversal non-recursive style.
|
void |
TreeWalker.traverse(Node pos,
Node top)
Perform a pre-order traversal non-recursive style.
|
void |
ToStream.unparsedEntityDecl(java.lang.String name,
java.lang.String pubID,
java.lang.String sysID,
java.lang.String notationName)
If this method is called, the serializer is used as a
DTDHandler, which changes behavior how the serializer
handles document entities.
|
void |
SerializerBase.unparsedEntityDecl(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2,
java.lang.String arg3) |
void |
EmptySerializer.unparsedEntityDecl(java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2,
java.lang.String arg3) |
void |
ToSAXHandler.warning(SAXParseException exc) |
void |
SerializerBase.warning(SAXParseException exc) |
void |
EmptySerializer.warning(SAXParseException arg0) |
Modifier and Type | Class and Description |
---|---|
class |
StopParseException
This is a special exception that is used to stop parsing when
search for an element.
|
Modifier and Type | Method and Description |
---|---|
void |
DOMBuilder.cdata(char[] ch,
int start,
int length)
Receive notification of cdata.
|
void |
DOMBuilder.characters(char[] ch,
int start,
int length)
Receive notification of character data.
|
void |
DOMBuilder.charactersRaw(char[] ch,
int start,
int length)
If available, when the disable-output-escaping attribute is used,
output raw text without escaping.
|
void |
DOMBuilder.comment(char[] ch,
int start,
int length)
Report an XML comment anywhere in the document.
|
void |
XMLStringDefault.dispatchAsComment(LexicalHandler lh)
Directly call the
comment method on the passed LexicalHandler for the
string-value.
|
void |
XMLString.dispatchAsComment(LexicalHandler lh)
Directly call the
comment method on the passed LexicalHandler for the
string-value.
|
void |
XMLStringDefault.dispatchCharactersEvents(ContentHandler ch)
Directly call the
characters method on the passed ContentHandler for the
string-value.
|
void |
XMLString.dispatchCharactersEvents(ContentHandler ch)
Directly call the
characters method on the passed ContentHandler for the
string-value.
|
void |
DOMBuilder.endCDATA()
Report the end of a CDATA section.
|
void |
DOMBuilder.endDocument()
Receive notification of the end of a document.
|
void |
DOMBuilder.endDTD()
Report the end of DTD declarations.
|
void |
DOMBuilder.endElement(java.lang.String ns,
java.lang.String localName,
java.lang.String name)
Receive notification of the end of an element.
|
void |
DOMBuilder.endEntity(java.lang.String name)
Report the end of an entity.
|
void |
DOMBuilder.endPrefixMapping(java.lang.String prefix)
End the scope of a prefix-URI mapping.
|
void |
DOMBuilder.entityReference(java.lang.String name)
Receive notivication of a entityReference.
|
void |
ListingErrorHandler.error(SAXParseException exception)
Receive notification of a recoverable error.
|
void |
DefaultErrorHandler.error(SAXParseException exception)
Receive notification of a recoverable error.
|
void |
ListingErrorHandler.fatalError(SAXParseException exception)
Receive notification of a non-recoverable error.
|
void |
DefaultErrorHandler.fatalError(SAXParseException exception)
Receive notification of a non-recoverable error.
|
XMLReader |
XMLReaderManager.getXMLReader()
Retrieves a cached XMLReader for this thread, or creates a new
XMLReader, if the existing reader is in use.
|
void |
DOMBuilder.ignorableWhitespace(char[] ch,
int start,
int length)
Receive notification of ignorable whitespace in element content.
|
void |
StylesheetPIHandler.processingInstruction(java.lang.String target,
java.lang.String data)
Handle the xml-stylesheet processing instruction.
|
void |
DOMBuilder.processingInstruction(java.lang.String target,
java.lang.String data)
Receive notification of a processing instruction.
|
static void |
FastStringBuffer.sendNormalizedSAXcharacters(char[] ch,
int start,
int length,
ContentHandler handler)
Directly normalize and dispatch the character array.
|
int |
FastStringBuffer.sendNormalizedSAXcharacters(ContentHandler ch,
int start,
int length)
Sends the specified range of characters as one or more SAX characters()
events, normalizing the characters according to XSLT rules.
|
void |
FastStringBuffer.sendSAXcharacters(ContentHandler ch,
int start,
int length)
Sends the specified range of characters as one or more SAX characters()
events.
|
void |
FastStringBuffer.sendSAXComment(LexicalHandler ch,
int start,
int length)
Sends the specified range of characters as sax Comment.
|
void |
DOMBuilder.skippedEntity(java.lang.String name)
Receive notification of a skipped entity.
|
void |
DOMBuilder.startCDATA()
Report the start of a CDATA section.
|
void |
DOMBuilder.startDocument()
Receive notification of the beginning of a document.
|
void |
DOMBuilder.startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Report the start of DTD declarations, if any.
|
void |
StylesheetPIHandler.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName,
Attributes atts)
The spec notes that "The xml-stylesheet processing instruction is allowed only in the prolog of an XML document
|
void |
DOMBuilder.startElement(java.lang.String ns,
java.lang.String localName,
java.lang.String name,
Attributes atts)
Receive notification of the beginning of an element.
|
void |
DOMBuilder.startEntity(java.lang.String name)
Report the beginning of an entity.
|
void |
DOMBuilder.startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Begin the scope of a prefix-URI Namespace mapping.
|
void |
TreeWalker.traverse(Node pos)
Perform a pre-order traversal non-recursive style.
|
void |
TreeWalker.traverse(Node pos,
Node top)
Perform a pre-order traversal non-recursive style.
|
void |
TreeWalker.traverseFragment(Node pos)
Perform a pre-order traversal non-recursive style.
|
void |
ListingErrorHandler.warning(SAXParseException exception)
Receive notification of a warning.
|
void |
DefaultErrorHandler.warning(SAXParseException exception)
Receive notification of a warning.
|
Modifier and Type | Method and Description |
---|---|
void |
Expression.executeCharsToContentHandler(XPathContext xctxt,
ContentHandler handler)
Execute an expression in the XPath runtime context, and return the
result of the expression.
|
Modifier and Type | Method and Description |
---|---|
void |
LocPathIterator.executeCharsToContentHandler(XPathContext xctxt,
ContentHandler handler)
Execute an expression in the XPath runtime context, and return the
result of the expression.
|
Modifier and Type | Method and Description |
---|---|
void |
FuncNormalizeSpace.executeCharsToContentHandler(XPathContext xctxt,
ContentHandler handler)
Execute an expression in the XPath runtime context, and return the
result of the expression.
|
Modifier and Type | Method and Description |
---|---|
void |
XStringForFSB.dispatchAsComment(LexicalHandler lh)
Directly call the
comment method on the passed LexicalHandler for the
string-value.
|
void |
XStringForChars.dispatchAsComment(LexicalHandler lh)
Directly call the
comment method on the passed LexicalHandler for the
string-value.
|
void |
XString.dispatchAsComment(LexicalHandler lh)
Directly call the
comment method on the passed LexicalHandler for the
string-value.
|
void |
XStringForFSB.dispatchCharactersEvents(ContentHandler ch)
Directly call the
characters method on the passed ContentHandler for the
string-value.
|
void |
XStringForChars.dispatchCharactersEvents(ContentHandler ch)
Directly call the
characters method on the passed ContentHandler for the
string-value.
|
void |
XString.dispatchCharactersEvents(ContentHandler ch)
Directly call the
characters method on the passed ContentHandler for the
string-value.
|
void |
XObject.dispatchCharactersEvents(ContentHandler ch)
Directly call the
characters method on the passed ContentHandler for the
string-value.
|
void |
XNodeSet.dispatchCharactersEvents(ContentHandler ch)
Directly call the
characters method on the passed ContentHandler for the
string-value.
|
Modifier and Type | Class and Description |
---|---|
class |
SAXNotRecognizedException
Exception class for an unrecognized identifier.
|
class |
SAXNotSupportedException
Exception class for an unsupported operation.
|
class |
SAXParseException
Encapsulate an XML parse error or warning.
|
Modifier and Type | Method and Description |
---|---|
void |
HandlerBase.characters(char[] ch,
int start,
int length)
Deprecated.
Receive notification of character data inside an element.
|
void |
DocumentHandler.characters(char[] ch,
int start,
int length)
Deprecated.
Receive notification of character data.
|
void |
ContentHandler.characters(char[] ch,
int start,
int length)
Receive notification of character data.
|
void |
HandlerBase.endDocument()
Deprecated.
Receive notification of the end of the document.
|
void |
DocumentHandler.endDocument()
Deprecated.
Receive notification of the end of a document.
|
void |
ContentHandler.endDocument()
Receive notification of the end of a document.
|
void |
HandlerBase.endElement(java.lang.String name)
Deprecated.
Receive notification of the end of an element.
|
void |
DocumentHandler.endElement(java.lang.String name)
Deprecated.
Receive notification of the end of an element.
|
void |
ContentHandler.endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName)
Receive notification of the end of an element.
|
void |
ContentHandler.endPrefixMapping(java.lang.String prefix)
End the scope of a prefix-URI mapping.
|
void |
HandlerBase.error(SAXParseException e)
Deprecated.
Receive notification of a recoverable parser error.
|
void |
ErrorHandler.error(SAXParseException exception)
Receive notification of a recoverable error.
|
void |
HandlerBase.fatalError(SAXParseException e)
Deprecated.
Report a fatal XML parsing error.
|
void |
ErrorHandler.fatalError(SAXParseException exception)
Receive notification of a non-recoverable error.
|
void |
HandlerBase.ignorableWhitespace(char[] ch,
int start,
int length)
Deprecated.
Receive notification of ignorable whitespace in element content.
|
void |
DocumentHandler.ignorableWhitespace(char[] ch,
int start,
int length)
Deprecated.
Receive notification of ignorable whitespace in element content.
|
void |
ContentHandler.ignorableWhitespace(char[] ch,
int start,
int length)
Receive notification of ignorable whitespace in element content.
|
void |
DTDHandler.notationDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Receive notification of a notation declaration event.
|
void |
XMLReader.parse(InputSource input)
Parse an XML document.
|
void |
Parser.parse(InputSource source)
Deprecated.
Parse an XML document.
|
void |
XMLReader.parse(java.lang.String systemId)
Parse an XML document from a system identifier (URI).
|
void |
Parser.parse(java.lang.String systemId)
Deprecated.
Parse an XML document from a system identifier (URI).
|
void |
HandlerBase.processingInstruction(java.lang.String target,
java.lang.String data)
Deprecated.
Receive notification of a processing instruction.
|
void |
DocumentHandler.processingInstruction(java.lang.String target,
java.lang.String data)
Deprecated.
Receive notification of a processing instruction.
|
void |
ContentHandler.processingInstruction(java.lang.String target,
java.lang.String data)
Receive notification of a processing instruction.
|
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.
|
void |
Parser.setLocale(java.util.Locale locale)
Deprecated.
Allow an application to request a locale for errors and warnings.
|
void |
ContentHandler.skippedEntity(java.lang.String name)
Receive notification of a skipped entity.
|
void |
HandlerBase.startDocument()
Deprecated.
Receive notification of the beginning of the document.
|
void |
DocumentHandler.startDocument()
Deprecated.
Receive notification of the beginning of a document.
|
void |
ContentHandler.startDocument()
Receive notification of the beginning of a document.
|
void |
HandlerBase.startElement(java.lang.String name,
AttributeList attributes)
Deprecated.
Receive notification of the start of an element.
|
void |
DocumentHandler.startElement(java.lang.String name,
AttributeList atts)
Deprecated.
Receive notification of the beginning of an element.
|
void |
ContentHandler.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
Attributes atts)
Receive notification of the beginning of an element.
|
void |
ContentHandler.startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Begin the scope of a prefix-URI Namespace mapping.
|
void |
DTDHandler.unparsedEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId,
java.lang.String notationName)
Receive notification of an unparsed entity declaration event.
|
void |
HandlerBase.warning(SAXParseException e)
Deprecated.
Receive notification of a parser warning.
|
void |
ErrorHandler.warning(SAXParseException exception)
Receive notification of a warning.
|
Modifier and Type | Method and Description |
---|---|
void |
DefaultHandler2.attributeDecl(java.lang.String eName,
java.lang.String aName,
java.lang.String type,
java.lang.String mode,
java.lang.String value) |
void |
DeclHandler.attributeDecl(java.lang.String eName,
java.lang.String aName,
java.lang.String type,
java.lang.String mode,
java.lang.String value)
Report an attribute type declaration.
|
void |
LexicalHandler.comment(char[] ch,
int start,
int length)
Report an XML comment anywhere in the document.
|
void |
DefaultHandler2.comment(char[] ch,
int start,
int length) |
void |
DefaultHandler2.elementDecl(java.lang.String name,
java.lang.String model) |
void |
DeclHandler.elementDecl(java.lang.String name,
java.lang.String model)
Report an element type declaration.
|
void |
LexicalHandler.endCDATA()
Report the end of a CDATA section.
|
void |
DefaultHandler2.endCDATA() |
void |
LexicalHandler.endDTD()
Report the end of DTD declarations.
|
void |
DefaultHandler2.endDTD() |
void |
LexicalHandler.endEntity(java.lang.String name)
Report the end of an entity.
|
void |
DefaultHandler2.endEntity(java.lang.String name) |
void |
DefaultHandler2.externalEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId) |
void |
DeclHandler.externalEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Report a parsed external entity declaration.
|
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.
|
void |
DefaultHandler2.internalEntityDecl(java.lang.String name,
java.lang.String value) |
void |
DeclHandler.internalEntityDecl(java.lang.String name,
java.lang.String value)
Report an internal entity declaration.
|
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.
|
void |
LexicalHandler.startCDATA()
Report the start of a CDATA section.
|
void |
DefaultHandler2.startCDATA() |
void |
LexicalHandler.startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Report the start of DTD declarations, if any.
|
void |
DefaultHandler2.startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId) |
void |
LexicalHandler.startEntity(java.lang.String name)
Report the beginning of some internal and external XML entities.
|
void |
DefaultHandler2.startEntity(java.lang.String name) |
Modifier and Type | Method and Description |
---|---|
void |
XMLReaderAdapter.characters(char[] ch,
int start,
int length)
Adapt a SAX2 characters event.
|
void |
XMLFilterImpl.characters(char[] ch,
int start,
int length)
Filter a character data event.
|
void |
ParserAdapter.characters(char[] ch,
int start,
int length)
Adapter implementation method; do not call.
|
void |
DefaultHandler.characters(char[] ch,
int start,
int length)
Receive notification of character data inside an element.
|
static XMLReader |
XMLReaderFactory.createXMLReader()
Attempt to create an XMLReader from system defaults.
|
static XMLReader |
XMLReaderFactory.createXMLReader(java.lang.String className)
Attempt to create an XML reader from a class name.
|
void |
XMLReaderAdapter.endDocument()
End document event.
|
void |
XMLFilterImpl.endDocument()
Filter an end document event.
|
void |
ParserAdapter.endDocument()
Adapter implementation method; do not call.
|
void |
DefaultHandler.endDocument()
Receive notification of the end of the document.
|
void |
ParserAdapter.endElement(java.lang.String qName)
Adapter implementation method; do not call.
|
void |
XMLReaderAdapter.endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName)
Adapt a SAX2 end element event.
|
void |
XMLFilterImpl.endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName)
Filter an end element event.
|
void |
DefaultHandler.endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName)
Receive notification of the end of an element.
|
void |
XMLFilterImpl.endPrefixMapping(java.lang.String prefix)
Filter an end Namespace prefix mapping event.
|
void |
DefaultHandler.endPrefixMapping(java.lang.String prefix)
Receive notification of the end of a Namespace mapping.
|
void |
XMLFilterImpl.error(SAXParseException e)
Filter an error event.
|
void |
DefaultHandler.error(SAXParseException e)
Receive notification of a recoverable parser error.
|
void |
XMLFilterImpl.fatalError(SAXParseException e)
Filter a fatal error event.
|
void |
DefaultHandler.fatalError(SAXParseException e)
Report a fatal XML parsing error.
|
void |
XMLReaderAdapter.ignorableWhitespace(char[] ch,
int start,
int length)
Adapt a SAX2 ignorable whitespace event.
|
void |
XMLFilterImpl.ignorableWhitespace(char[] ch,
int start,
int length)
Filter an ignorable whitespace event.
|
void |
ParserAdapter.ignorableWhitespace(char[] ch,
int start,
int length)
Adapter implementation method; do not call.
|
void |
DefaultHandler.ignorableWhitespace(char[] ch,
int start,
int length)
Receive notification of ignorable whitespace in element content.
|
void |
XMLFilterImpl.notationDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Filter a notation declaration event.
|
void |
DefaultHandler.notationDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Receive notification of a notation declaration.
|
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.
|
void |
XMLReaderAdapter.parse(java.lang.String systemId)
Parse the document.
|
void |
XMLFilterImpl.parse(java.lang.String systemId)
Parse a document.
|
void |
ParserAdapter.parse(java.lang.String systemId)
Parse an XML document.
|
void |
XMLReaderAdapter.processingInstruction(java.lang.String target,
java.lang.String data)
Adapt a SAX2 processing instruction event.
|
void |
XMLFilterImpl.processingInstruction(java.lang.String target,
java.lang.String data)
Filter a processing instruction event.
|
void |
ParserAdapter.processingInstruction(java.lang.String target,
java.lang.String data)
Adapter implementation method; do not call.
|
void |
DefaultHandler.processingInstruction(java.lang.String target,
java.lang.String data)
Receive notification of a processing instruction.
|
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.
|
void |
XMLReaderAdapter.setLocale(java.util.Locale locale)
Set the locale for error reporting.
|
void |
XMLReaderAdapter.skippedEntity(java.lang.String name)
Adapt a SAX2 skipped entity event.
|
void |
XMLFilterImpl.skippedEntity(java.lang.String name)
Filter a skipped entity event.
|
void |
DefaultHandler.skippedEntity(java.lang.String name)
Receive notification of a skipped entity.
|
void |
XMLReaderAdapter.startDocument()
Start document event.
|
void |
XMLFilterImpl.startDocument()
Filter a start document event.
|
void |
ParserAdapter.startDocument()
Adapter implementation method; do not call.
|
void |
DefaultHandler.startDocument()
Receive notification of the beginning of the document.
|
void |
ParserAdapter.startElement(java.lang.String qName,
AttributeList qAtts)
Adapter implementation method; do not call.
|
void |
XMLReaderAdapter.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
Attributes atts)
Adapt a SAX2 start element event.
|
void |
XMLFilterImpl.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
Attributes atts)
Filter a start element event.
|
void |
DefaultHandler.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
Attributes attributes)
Receive notification of the start of an element.
|
void |
XMLFilterImpl.startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Filter a start Namespace prefix mapping event.
|
void |
DefaultHandler.startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Receive notification of the start of a Namespace mapping.
|
void |
XMLFilterImpl.unparsedEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId,
java.lang.String notationName)
Filter an unparsed entity declaration event.
|
void |
DefaultHandler.unparsedEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId,
java.lang.String notationName)
Receive notification of an unparsed entity declaration.
|
void |
XMLFilterImpl.warning(SAXParseException e)
Filter a warning event.
|
void |
DefaultHandler.warning(SAXParseException e)
Receive notification of a parser warning.
|
Constructor and Description |
---|
ParserAdapter()
Construct a new parser adapter.
|
XMLReaderAdapter()
Create a new adapter.
|
Copyright © 2014 Apache XML Project. All Rights Reserved.