Interface TreeVisitor<T>


public interface TreeVisitor<T>
Interface for a functor type object that is executed against nodes in a Tree.
Version:
$Revision$ $Date$
Author:
Nick Collier
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    visit(T node)
    Visit the specified node, presumably performing some operation on that node.
  • Method Details

    • visit

      void visit(T node)
      Visit the specified node, presumably performing some operation on that node.
      Parameters:
      node -