public class ReceivingContentHandler
extends java.lang.Object
implements org.xml.sax.ContentHandler, org.xml.sax.ext.LexicalHandler, org.xml.sax.DTDHandler
The class was previously named ContentEmitter.
If the input stream contains the processing instructions assigned by JAXP to switch disable-output-escaping on or off, these will be reflected in properties set in the corresponding characters events. In this case adjacent text nodes will not be combined.
| Constructor and Description |
|---|
ReceivingContentHandler()
Create a ReceivingContentHandler and initialise variables
|
| Modifier and Type | Method and Description |
|---|---|
void |
characters(char[] ch,
int start,
int length)
Report character data.
|
void |
comment(char[] ch,
int start,
int length)
Notify the existence of a comment.
|
void |
endCDATA() |
void |
endDocument()
Receive notification of the end of a document
|
void |
endDTD()
Register the end of the DTD.
|
void |
endElement(java.lang.String uri,
java.lang.String localname,
java.lang.String rawname)
Report the end of an element (the close tag)
|
void |
endEntity(java.lang.String name) |
void |
endPrefixMapping(java.lang.String prefix)
Notify that a namespace binding is going out of scope
|
Configuration |
getConfiguration()
Get the Configuration object
|
PipelineConfiguration |
getPipelineConfiguration()
Get the pipeline configuration
|
Receiver |
getReceiver()
Get the receiver to which events are passed.
|
void |
ignorableWhitespace(char[] ch,
int start,
int length)
Report character data classified as "Ignorable whitespace", that is, whitespace text nodes
appearing as children of elements with an element-only content model
|
boolean |
isIgnoringIgnorableWhitespace()
Determine whether "ignorable whitespace" is ignored.
|
void |
notationDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId) |
void |
processingInstruction(java.lang.String name,
java.lang.String remainder)
Notify the existence of a processing instruction
|
void |
reset()
Set the ReceivingContentHandler to its initial state, except for the local name cache,
which is retained
|
void |
setDocumentLocator(org.xml.sax.Locator locator)
Supply a locator that can be called to give information about location in the source document
being parsed.
|
void |
setIgnoreIgnorableWhitespace(boolean ignore)
Set whether "ignorable whitespace" should be ignored.
|
void |
setPipelineConfiguration(PipelineConfiguration pipe)
Set the pipeline configuration
|
void |
setReceiver(Receiver receiver)
Set the receiver to which events are passed.
|
void |
skippedEntity(java.lang.String name)
Notify a skipped entity.
|
void |
startCDATA() |
void |
startDocument()
Receive notification of the beginning of a document.
|
void |
startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Register the start of the DTD.
|
void |
startElement(java.lang.String uri,
java.lang.String localname,
java.lang.String rawname,
org.xml.sax.Attributes atts)
Notify an element start event, including all the associated attributes
|
void |
startEntity(java.lang.String name) |
void |
startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Notify a namespace prefix to URI binding
|
void |
unparsedEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId,
java.lang.String notationName) |
public ReceivingContentHandler()
public void reset()
public void setReceiver(Receiver receiver)
receiver - the Receiver of eventspublic Receiver getReceiver()
public void setPipelineConfiguration(PipelineConfiguration pipe)
pipe - the pipeline configuration. This holds a reference to the Saxon configuration, as well as
information that can vary from one pipeline to anotherpublic PipelineConfiguration getPipelineConfiguration()
setPipelineConfiguration(PipelineConfiguration)public Configuration getConfiguration()
public void setIgnoreIgnorableWhitespace(boolean ignore)
ignore - true if ignorable whitespace (whitespace in element content that is notified
via the ignorableWhitespace(char[], int, int) method) should be ignored, false if
it should be treated as ordinary text.public boolean isIgnoringIgnorableWhitespace()
setIgnoreIgnorableWhitespace(boolean) if that has been called; otherwise the value
from the configuration.public void startDocument()
throws org.xml.sax.SAXException
startDocument in interface org.xml.sax.ContentHandlerorg.xml.sax.SAXExceptionpublic void endDocument()
throws org.xml.sax.SAXException
endDocument in interface org.xml.sax.ContentHandlerorg.xml.sax.SAXExceptionpublic void setDocumentLocator(org.xml.sax.Locator locator)
setDocumentLocator in interface org.xml.sax.ContentHandlerpublic void startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
throws org.xml.sax.SAXException
startPrefixMapping in interface org.xml.sax.ContentHandlerorg.xml.sax.SAXExceptionpublic void endPrefixMapping(java.lang.String prefix)
throws org.xml.sax.SAXException
endPrefixMapping in interface org.xml.sax.ContentHandlerorg.xml.sax.SAXExceptionpublic void startElement(java.lang.String uri,
java.lang.String localname,
java.lang.String rawname,
org.xml.sax.Attributes atts)
throws org.xml.sax.SAXException
startElement in interface org.xml.sax.ContentHandlerorg.xml.sax.SAXExceptionpublic void endElement(java.lang.String uri,
java.lang.String localname,
java.lang.String rawname)
throws org.xml.sax.SAXException
endElement in interface org.xml.sax.ContentHandlerorg.xml.sax.SAXExceptionpublic void characters(char[] ch,
int start,
int length)
throws org.xml.sax.SAXException
characters in interface org.xml.sax.ContentHandlerorg.xml.sax.SAXExceptionpublic void ignorableWhitespace(char[] ch,
int start,
int length)
throws org.xml.sax.SAXException
ignorableWhitespace in interface org.xml.sax.ContentHandlerorg.xml.sax.SAXExceptionpublic void processingInstruction(java.lang.String name,
java.lang.String remainder)
throws org.xml.sax.SAXException
processingInstruction in interface org.xml.sax.ContentHandlerorg.xml.sax.SAXExceptionpublic void comment(char[] ch,
int start,
int length)
throws org.xml.sax.SAXException
comment in interface org.xml.sax.ext.LexicalHandlerorg.xml.sax.SAXExceptionpublic void skippedEntity(java.lang.String name)
throws org.xml.sax.SAXException
skippedEntity in interface org.xml.sax.ContentHandlerorg.xml.sax.SAXExceptionpublic void startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
throws org.xml.sax.SAXException
startDTD in interface org.xml.sax.ext.LexicalHandlerorg.xml.sax.SAXExceptionpublic void endDTD()
throws org.xml.sax.SAXException
endDTD in interface org.xml.sax.ext.LexicalHandlerorg.xml.sax.SAXExceptionpublic void startEntity(java.lang.String name)
throws org.xml.sax.SAXException
startEntity in interface org.xml.sax.ext.LexicalHandlerorg.xml.sax.SAXExceptionpublic void endEntity(java.lang.String name)
throws org.xml.sax.SAXException
endEntity in interface org.xml.sax.ext.LexicalHandlerorg.xml.sax.SAXExceptionpublic void startCDATA()
throws org.xml.sax.SAXException
startCDATA in interface org.xml.sax.ext.LexicalHandlerorg.xml.sax.SAXExceptionpublic void endCDATA()
throws org.xml.sax.SAXException
endCDATA in interface org.xml.sax.ext.LexicalHandlerorg.xml.sax.SAXExceptionpublic void notationDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
throws org.xml.sax.SAXException
notationDecl in interface org.xml.sax.DTDHandlerorg.xml.sax.SAXExceptionpublic void unparsedEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId,
java.lang.String notationName)
throws org.xml.sax.SAXException
unparsedEntityDecl in interface org.xml.sax.DTDHandlerorg.xml.sax.SAXExceptionCopyright (c) 2004-2018 Saxonica Limited. All rights reserved.