jd.xml.xpath.model
Interface NodeVisitor

All Known Implementing Classes:
Serializer

public interface NodeVisitor

A NodeVisitor represents a double dispatch mechanism for a node type.


Method Summary
 void attribute(XPathNode node)
           
 void comment(XPathNode node)
           
 void element(XPathNode node)
           
 void namespace(XPathNode node)
           
 void processingInstruction(XPathNode node)
           
 void root(XPathRootNode node)
           
 void text(XPathNode node)
           
 

Method Detail

root

public void root(XPathRootNode node)

element

public void element(XPathNode node)

text

public void text(XPathNode node)

processingInstruction

public void processingInstruction(XPathNode node)

comment

public void comment(XPathNode node)

attribute

public void attribute(XPathNode node)

namespace

public void namespace(XPathNode node)