Package | Description |
---|---|
org.n52.security.common.xml |
The XML package contains utiltiy and helper classes for xml processing.
|
Modifier and Type | Class and Description |
---|---|
class |
DocumentVisitorAdapter
Implements a DocumentVisitor and delegates the untyped visit(Node) methods to typed methods, like visit(Element).
|
Modifier and Type | Method and Description |
---|---|
void |
DocumentTraverser.traverseBreadthFirst(Node node,
DocumentVisitor visitor)
Traverses the node in breadth first order (siblings first).
|
void |
DocumentTraverser.traverseBreadthFirst(Node node,
DocumentVisitor visitor,
boolean visitStartNode)
Traverses the node in breadth first order (siblings first).
|
void |
DocumentTraverser.traverseDepthFirst(Node node,
DocumentVisitor visitor)
Traverses the DOM tree starting at node using depth first traversal (children first).
|
void |
DocumentTraverser.traverseDepthFirst(Node node,
DocumentVisitor visitor,
boolean visitStartNode)
Traverses the DOM tree starting at node using depth first traversal,
it skips the start node if visitStartNode==false.
|
Copyright © 2004–2016 52north.org. All rights reserved.