edu.uconn.mcb.lineageevolver.misc
Interface Visitable

All Known Implementing Classes:
Genome, Lineage

public interface Visitable

Common interface for all visitable objects.

Author:
Hasan Khalil, Lina Pezzella

Method Summary
 void visit(Visitor v)
          Method to visit this visitable object with a visitor.
 

Method Detail

visit

public void visit(Visitor v)
Method to visit this visitable object with a visitor.

Parameters:
v - the visitor with which to visit this visitable object.