Interface Visitor<T>

Record Components:
T - the base type of the objects to visit
All Known Implementing Classes:
AntlrExceptionVisitor, VisitorAdapter

public interface Visitor<T>
Interface for visiting object of the parameterized type.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    visit(T obj)
    Generic visit method.
  • Method Details

    • visit

      void visit(T obj)
      Generic visit method.
      Parameters:
      obj -