Interface Summary |
Attribute |
Common interface to all classes representing the attributes of tags and XML declarations (for example:
"id='thing'") in XML documents. |
CDATA |
Common interface of all classes representing CDATA elements
(for example: "<![CDATA[<greeting>Hello, world!</greeting>]]>") in XML documents. |
Comment |
Common interface of all classes representing comments (for example: "<!-- Hello World! -->")
in XML documents. |
Content |
Common interface of all classes representing the non-whitespace material that falls between tags in XML documents. |
Declaration |
Common interface of all classes representing declarations ("<!DOCTYPE greeting SYSTEM "hello.dtd">")
in XML documents. |
EmptyTag |
Common interface of all classes representing empty tags ("<br/>") in XML documents. |
EndTag |
Common interface of all classes representing end tags ("</p>") in XML documents. |
Item |
Common ancestor of all classes representing sections of XML documents that contain material other than
whitespace. |
NamedItem |
Common interface of all named items in XML documents. |
Namespace |
Common interface of all namespace designations in XML documents. |
Range |
Super-interface of a hierarchy of interfaces that provide for the classification, and
manipulation, of the complete contents of any XML markup. |
StartTag |
Common interface of all classes representing start tags ("<p>") in XML documents. |
Tag |
Common interface of all tags in XML documents. |
TagWithAttributes |
Common interface of all tags that can possess attributes (for example: "<p class='thing'>")
in XML documents. |
Whitespace |
Common interface of all sections of whitespace in XML documents. |
XMLDeclaration |
Common interface of all classes representing XML declarations ("<?xml version="1.0" encoding="UTF-8"?>")
in XML documents. |