//VertexVisitor.java

interface VertexVisitor
{
    public void visit(Vertex vertexToVisit);
}

