Uses of Interface
org.topbraid.spin.model.visitor.ElementVisitor

Packages that use ElementVisitor
org.topbraid.spin.model The SPIN object model (subclasses of Jena Resource). 
org.topbraid.spin.model.visitor Support for traversing SPIN object trees. 
 

Uses of ElementVisitor in org.topbraid.spin.model
 

Methods in org.topbraid.spin.model with parameters of type ElementVisitor
 void Element.visit(ElementVisitor visitor)
          Visits this with a given visitor.
 

Uses of ElementVisitor in org.topbraid.spin.model.visitor
 

Classes in org.topbraid.spin.model.visitor that implement ElementVisitor
 class AbstractElementVisitor
          Basic, "empty" implementation of ElementVisitor.
 class ElementWalker
          An object that can be used to recursively walk through an Element and the embedded expressions.
 

Constructors in org.topbraid.spin.model.visitor with parameters of type ElementVisitor
ElementWalker(ElementVisitor elementVisitor, ExpressionVisitor expressionVisitor)