public interface NodeProcessor
Modifier and Type | Method and Description |
---|---|
boolean |
accept(Node aNode)
Defines if this visitor should process the provided node.
|
void |
process(Node aNode)
Processes the provided DOM Node.
|
boolean accept(Node aNode)
aNode
- The DOM node to process.true
if the provided Node should be processed by this NodeProcessor.void process(Node aNode)
aNode
- The DOM Node to process.Copyright © 2005–2015 MojoHaus. All rights reserved.