net.sf.saxon.tinytree |
|
Java Source File Name | Type | Comment |
AncestorEnumeration.java | Class | This class enumerates the ancestor:: or ancestor-or-self:: axes,
starting at a given node. |
AttributeEnumeration.java | Class | AttributeEnumeration is an iterator over all the attribute nodes of an Element. |
CharSlice.java | Class | This is an implementation of the JDK 1.4 CharSequence interface: it implements
a CharSequence as a view of an array. |
DeclaredPrefixIterator.java | Class | |
DescendantEnumeration.java | Class | This class supports both the descendant:: and descendant-or-self:: axes, which are
identical except for the route to the first candidate node. |
FollowingEnumeration.java | Class | Iterate over the following axis starting at a given node. |
PrecedingEnumeration.java | Class | Enumerate all the nodes on the preceding axis from a given start node.
The calling code ensures that the start node is not a root, attribute,
or namespace node. |
PrecedingSiblingEnumeration.java | Class | This class supports the preceding-sibling axis. |
SiblingEnumeration.java | Class | This class supports both the child:: and following-sibling:: axes, which are
identical except for the route to the first candidate node. |
TinyAttributeCollection.java | Class | An implementation of the AttributeCollection interface based directly on the
TinyTree data structure. |
TinyAttributeImpl.java | Class | A node in the XML parse tree representing an attribute. |
TinyBuilder.java | Class | The TinyBuilder class is responsible for taking a stream of SAX events and constructing
a Document tree, using the "TinyTree" implementation.
author: Michael H. |
TinyCommentImpl.java | Class | TinyCommentImpl is an implementation of CommentInfo
author: Michael H. |
TinyDocumentImpl.java | Class | |
TinyElementImpl.java | Class | A node in the XML parse tree representing an XML element.
This class is an implementation of NodeInfo. |
TinyNodeImpl.java | Class | A node in a TinyTree representing an XML element, character content, or attribute.
This is the top-level class in the implementation class hierarchy; it essentially contains
all those methods that can be defined using other primitive methods, without direct access
to data.
author: Michael H. |
TinyParentNodeImpl.java | Class | TinyParentNodeImpl is an implementation of a non-leaf node (specifically, an Element node
or a Document node)
author: Michael H. |
TinyProcInstImpl.java | Class | TProcInstImpl is an implementation of ProcInstInfo
author: Michael H. |
TinyTextImpl.java | Class | A node in the XML parse tree representing character content
author: Michael H. |
TinyTree.java | Class | A data structure to hold the contents of a tree. |
TinyTreeWalker.java | Class | This implementation of the Saxon pull interface starts from a document, element,
text, comment, or processing-instruction node in a TinyTree,
and returns the events corresponding to that node and its descendants (including
their attributes and namespaces). |