XMLDocumentHandler which forks the pipeline to two other components.
Modifier and Type | Field and Description |
---|---|
private XMLDocumentHandler | next
The next component in the pipeline who receives the event. |
private XMLDocumentHandler | side
The component who intercepts events. |
private XMLDocumentSource | source
The source of the event. |
Access | Constructor and Description |
---|---|
pack-priv |
Modifier and Type | Method and Description |
---|---|
public void | characters(XMLString
The content. text, Augmentations Additional information that may include infoset augmentations augs)Implements com. Character content. |
public void | comment(XMLString
The text in the comment. text, Augmentations Additional information that may include infoset augmentations augs)Implements com. A comment. |
public void | doctypeDecl(String
The name of the root element. rootElement, String The public identifier if an external DTD or null
if the external DTD is specified using SYSTEM. publicId, String The system identifier if an external DTD, null
otherwise. systemId, Augmentations Additional information that may include infoset augmentations augs)Implements com. Notifies of the presence of the DOCTYPE line in the document. |
public void | emptyElement(QName
The name of the element. element, XMLAttributes The element attributes. attributes, Augmentations Additional information that may include infoset augmentations augs)Implements com. An empty element. |
public void | endCDATA(Augmentations
Additional information that may include infoset augmentations augs)Implements com. The end of a CDATA section. |
public void | endDocument(Augmentations
Additional information that may include infoset augmentations augs)Implements com. The end of the document. |
public void | endElement(QName
The name of the element. element, Augmentations Additional information that may include infoset augmentations augs)Implements com. The end of an element. |
public void | endGeneralEntity(String
The name of the entity. name, Augmentations Additional information that may include infoset augmentations augs)Implements com. This method notifies the end of a general entity. |
public XMLDocumentHandler | getDocumentHandler()
Implements com. Returns the document handler |
public XMLDocumentSource | getDocumentSource()
Implements com. Returns the document source. |
public XMLDocumentHandler | |
public void | ignorableWhitespace(XMLString
The ignorable whitespace. text, Augmentations Additional information that may include infoset augmentations augs)Implements com. Ignorable whitespace. |
public void | processingInstruction(String
The target. target, XMLString The data or null if none specified. data, Augmentations Additional information that may include infoset augmentations augs)Implements com. A processing instruction. |
public void | setDocumentHandler(XMLDocumentHandler handler)
Implements com. Sets the document handler. |
public void | setDocumentSource(XMLDocumentSource source)
Implements com. Sets the document source. |
public void | |
public void | startCDATA(Augmentations
Additional information that may include infoset augmentations augs)Implements com. The start of a CDATA section. |
public void | startDocument(XMLLocator
The document locator, or null if the document
location cannot be reported during the parsing
of this document. However, it is strongly
recommended that a locator be supplied that can
at least report the system identifier of the
document. locator, String The auto-detected IANA encoding name of the entity
stream. This value will be null in those situations
where the entity encoding is not auto-detected (e.g.
internal entities or a document entity that is
parsed from a java.io.Reader). encoding, NamespaceContext The namespace context in effect at the
start of this document.
This object represents the current context.
Implementors of this class are responsible
for copying the namespace bindings from the
the current context (and its parent contexts)
if that information is important. namespaceContext, Augmentations Additional information that may include infoset augmentations augs)Implements com. The start of the document. |
public void | startElement(QName
The name of the element. element, XMLAttributes The element attributes. attributes, Augmentations Additional information that may include infoset augmentations augs)Implements com. The start of an element. |
public void | startGeneralEntity(String
The name of the general entity. name, XMLResourceIdentifier The resource identifier. identifier, String The auto-detected IANA encoding name of the entity
stream. This value will be null in those situations
where the entity encoding is not auto-detected (e.g.
internal entities or a document entity that is
parsed from a java.io.Reader). encoding, Augmentations Additional information that may include infoset augmentations augs)Implements com. This method notifies the start of a general entity. |
public void | textDecl(String
The XML version, or null if not specified. version, String The IANA encoding name of the entity. encoding, Augmentations Additional information that may include infoset augmentations augs)Implements com. Notifies of the presence of a TextDecl line in an entity. |
public void | xmlDecl(String
The XML version. version, String The IANA encoding name of the document, or null if
not specified. encoding, String The standalone value, or null if not specified. standalone, Augmentations Additional information that may include infoset augmentations augs)Implements com. Notifies of the presence of an XMLDecl line in the document. |
next | back to summary |
---|---|
private XMLDocumentHandler next The next component in the pipeline who receives the event. This component receives events after the "side" handler receives them. |
side | back to summary |
---|---|
private XMLDocumentHandler side The component who intercepts events. |
source | back to summary |
---|---|
private XMLDocumentSource source The source of the event. |
TeeXMLDocumentFilterImpl | back to summary |
---|---|
pack-priv TeeXMLDocumentFilterImpl() |
characters | back to summary |
---|---|
public void characters(XMLString text, Augmentations augs) throws XNIException Implements com. Doc from com. Character content.
|
comment | back to summary |
---|---|
public void comment(XMLString text, Augmentations augs) throws XNIException Implements com. Doc from com. A comment.
|
doctypeDecl | back to summary |
---|---|
public void doctypeDecl(String rootElement, String publicId, String systemId, Augmentations augs) throws XNIException Implements com. Doc from com. Notifies of the presence of the DOCTYPE line in the document.
|
emptyElement | back to summary |
---|---|
public void emptyElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException Implements com. Doc from com. An empty element.
|
endCDATA | back to summary |
---|---|
public void endCDATA(Augmentations augs) throws XNIException Implements com. Doc from com. The end of a CDATA section.
|
endDocument | back to summary |
---|---|
public void endDocument(Augmentations augs) throws XNIException Implements com. Doc from com. The end of the document.
|
endElement | back to summary |
---|---|
public void endElement(QName element, Augmentations augs) throws XNIException Implements com. Doc from com. The end of an element.
|
endGeneralEntity | back to summary |
---|---|
public void endGeneralEntity(String name, Augmentations augs) throws XNIException Implements com. Doc from com. This method notifies the end of a general entity. Note This method is not called for entity references appearing as part of attribute values.
|
getDocumentHandler | back to summary |
---|---|
public XMLDocumentHandler getDocumentHandler() Implements com. Doc from com. Returns the document handler |
getDocumentSource | back to summary |
---|---|
public XMLDocumentSource getDocumentSource() Implements com. Doc from com. Returns the document source. |
getSide | back to summary |
---|---|
public XMLDocumentHandler getSide() |
ignorableWhitespace | back to summary |
---|---|
public void ignorableWhitespace(XMLString text, Augmentations augs) throws XNIException Implements com. Doc from com. Ignorable whitespace. For this method to be called, the document source must have some way of determining that the text containing only whitespace characters should be considered ignorable. For example, the validator can determine if a length of whitespace characters in the document are ignorable based on the element content model.
|
processingInstruction | back to summary |
---|---|
public void processingInstruction(String target, XMLString data, Augmentations augs) throws XNIException Implements com. Doc from com. A processing instruction. Processing instructions consist of a target name and, optionally, text data. The data is only meaningful to the application. Typically, a processing instruction's data will contain a series of pseudo-attributes. These pseudo-attributes follow the form of element attributes but are not parsed or presented to the application as anything other than text. The application is responsible for parsing the data.
|
setDocumentHandler | back to summary |
---|---|
public void setDocumentHandler(XMLDocumentHandler handler) Implements com. Doc from com. Sets the document handler. |
setDocumentSource | back to summary |
---|---|
public void setDocumentSource(XMLDocumentSource source) Implements com. Doc from com. Sets the document source. |
setSide | back to summary |
---|---|
public void setSide(XMLDocumentHandler side) |
startCDATA | back to summary |
---|---|
public void startCDATA(Augmentations augs) throws XNIException Implements com. Doc from com. The start of a CDATA section.
|
startDocument | back to summary |
---|---|
public void startDocument(XMLLocator locator, String encoding, NamespaceContext namespaceContext, Augmentations augs) throws XNIException Implements com. Doc from com. The start of the document.
|
startElement | back to summary |
---|---|
public void startElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException Implements com. Doc from com. The start of an element.
|
startGeneralEntity | back to summary |
---|---|
public void startGeneralEntity(String name, XMLResourceIdentifier identifier, String encoding, Augmentations augs) throws XNIException Implements com. Doc from com. This method notifies the start of a general entity. Note This method is not called for entity references appearing as part of attribute values.
|
textDecl | back to summary |
---|---|
public void textDecl(String version, String encoding, Augmentations augs) throws XNIException Implements com. Doc from com. Notifies of the presence of a TextDecl line in an entity. If present, this method will be called immediately following the startEntity call. Note This method will never be called for the document entity; it is only called for external general entities referenced in document content. Note This method is not called for entity references appearing as part of attribute values.
|
xmlDecl | back to summary |
---|---|
public void xmlDecl(String version, String encoding, String standalone, Augmentations augs) throws XNIException Implements com. Doc from com. Notifies of the presence of an XMLDecl line in the document. If present, this method will be called immediately following the startDocument call.
|