Uses of Interface
jd.xml.xpath.model.NodeVisitor

Packages that use NodeVisitor
jd.xml.xpath.model Contains classes for the XPath node model. 
jd.xml.xpath.model.build.normal Contains the default implementation for XPath node model. 
jd.xml.xpath.model.visit Contains NodeVisitor implementations. 
 

Uses of NodeVisitor in jd.xml.xpath.model
 

Methods in jd.xml.xpath.model with parameters of type NodeVisitor
 void XPathNode.accept(NodeVisitor visitor)
          Dispatch method for NodeVisitors.
 

Uses of NodeVisitor in jd.xml.xpath.model.build.normal
 

Methods in jd.xml.xpath.model.build.normal with parameters of type NodeVisitor
 void TextNode.accept(NodeVisitor visitor)
          Dispatch method for NodeVisitors.
 void RootNode.accept(NodeVisitor visitor)
          Dispatch method for NodeVisitors.
 void PiNode.accept(NodeVisitor visitor)
          Dispatch method for NodeVisitors.
 void NamespaceNode.accept(NodeVisitor visitor)
          Dispatch method for NodeVisitors.
 void ElementNode.accept(NodeVisitor visitor)
          Dispatch method for NodeVisitors.
 void CommentNode.accept(NodeVisitor visitor)
          Dispatch method for NodeVisitors.
 void AttributeNode.accept(NodeVisitor visitor)
          Dispatch method for NodeVisitors.
 

Uses of NodeVisitor in jd.xml.xpath.model.visit
 

Classes in jd.xml.xpath.model.visit that implement NodeVisitor
 class Serializer