Uses of Interface
net.vleu.visitomatic.Visitor

Uses of Visitor in net.vleu.visitomatic
 

Methods in net.vleu.visitomatic with parameters of type Visitor
abstract
<R> java.util.concurrent.FutureTask<R>
VisitorRunner.futureVisit(Visitor visitor, Visitable visitable)
          Return a FutureTask that analyzes the provided Visitable, extracts the fields annotated by ToVisit and uses them as argument to call a method annotated by VisitingMethod from the Visitor
abstract
<R> R
VisitorRunner.visit(Visitor visitor, Visitable visitable)
          Analyzes the provided Visitable, extracts the fields annotated by ToVisit and uses them as argument to call a method annotated by VisitingMethod from the Visitor
 

Method parameters in net.vleu.visitomatic with type arguments of type Visitor
static VisitorRunner VisitorRunner.getInstance(java.lang.Class<? extends Visitor> visitorClass, java.lang.String visitName)
          Analyzes a Visitor Class and and returns a VisitorRunner ready to run on one or more Visitor of this class on one ore more Visitables.