Methods Summary |
---|
public void | characters(XMLString text, Augmentations augmentations)Character content.
|
public void | comment(XMLString text, Augmentations augmentations)A comment.
|
public void | emptyElement(QName element, XMLAttributes attributes, Augmentations augmentations)An empty element.
|
public void | endCDATA(Augmentations augmentations)The end of a CDATA section.
|
public void | endDocumentFragment(Augmentations augmentations)The end of the document fragment.
|
public void | endElement(QName element, Augmentations augmentations)The end of an element.
|
public void | endGeneralEntity(java.lang.String name, Augmentations augmentations)This method notifies the end of a general entity.
Note: This method is not called for entity references
appearing as part of attribute values.
|
public void | ignorableWhitespace(XMLString text, Augmentations augmentations)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.
|
public void | processingInstruction(java.lang.String target, XMLString data, Augmentations augmentations)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.
|
public void | startCDATA(Augmentations augmentations)The start of a CDATA section.
|
public void | startDocumentFragment(XMLLocator locator, NamespaceContext namespaceContext, Augmentations augmentations)The start of the document fragment.
|
public void | startElement(QName element, XMLAttributes attributes, Augmentations augmentations)The start of an element.
|
public void | startGeneralEntity(java.lang.String name, XMLResourceIdentifier identifier, java.lang.String encoding, Augmentations augmentations)This method notifies the start of a general entity.
Note: This method is not called for entity references
appearing as part of attribute values.
|
public void | textDecl(java.lang.String version, java.lang.String encoding, Augmentations augmentations)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.
|