Interface Visitor<T>


public interface Visitor<T>
A generic visitor.
Version:
$Id: //depot/branches/personal/haraldk/twelvemonkeys/release-2/twelvemonkeys-core/src/main/java/com/twelvemonkeys/util/Visitor.java#1 $
Author:
Harald Kuhr, last modified by $Author: haku $
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    visit(T pElement)
    Visits an element.
  • Method Details

    • visit

      void visit(T pElement)
      Visits an element.
      Parameters:
      pElement - the element to visit