| java.lang.Object net.sf.saxon.om.AxisIteratorImpl net.sf.saxon.tinytree.FollowingEnumeration
FollowingEnumeration | final class FollowingEnumeration extends AxisIteratorImpl (Code) | | Iterate over the following axis starting at a given node.
The start node must not be a namespace or attribute node.
|
Constructor Summary | |
public | FollowingEnumeration(TinyTree doc, TinyNodeImpl node, NodeTest nodeTest, boolean includeDescendants) Create an iterator over the following axis
Parameters: doc - the containing TinyTree Parameters: node - the start node. |
FollowingEnumeration | public FollowingEnumeration(TinyTree doc, TinyNodeImpl node, NodeTest nodeTest, boolean includeDescendants)(Code) | | Create an iterator over the following axis
Parameters: doc - the containing TinyTree Parameters: node - the start node. If the actual start was an attribute or namespace node, this willbe the parent element of that attribute or namespace Parameters: nodeTest - condition that all the returned nodes must satisfy Parameters: includeDescendants - true if descendants of the start node are to be included. This willbe false if the actual start was an element node, true if it was an attribute or namespace node(since the children of their parent follow the attribute or namespace in document order). |
|
|