edu.uconn.mcb.lineageevolver.misc
Interface Visitor

All Known Subinterfaces:
StrResultVisitor
All Known Implementing Classes:
GenomeVisitor, LineageVisitor

public interface Visitor

Common interface for Visitor objects.

Author:
Hasan Khalil, Lina Pezzella

Method Summary
 void applyTo(Visitable v)
          Applies this Visitor to the given Visitable object.
 

Method Detail

applyTo

public void applyTo(Visitable v)
Applies this Visitor to the given Visitable object.

Parameters:
v - the Visitable object to be visited.