Interface Visitor<T>

Type Parameters:
T - the type to be visited.

public interface Visitor<T>
Interface for a visitor class.
  • Method Summary

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

    • visit

      void visit(T obj)