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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void visit​(T node)
      Visit the specified node, presumably performing some operation on that node.
    • Method Detail

      • visit

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